Changeset 268243 in webkit
- Timestamp:
- Oct 8, 2020, 7:31:40 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebKit/ChangeLog ¶
r268239 r268243 1 2020-10-08 Alex Christensen <achristensen@webkit.org> 2 3 REGRESSION (r267763): SHOULD NEVER BE REACHED in WebKit::contentRuleListsFromIdentifier 4 https://bugs.webkit.org/show_bug.cgi?id=217499 5 6 There was an invalid assertion. NBD. 7 8 * UIProcess/WebProcessProxy.cpp: 9 (WebKit::contentRuleListsFromIdentifier): 10 1 11 2020-10-08 Ryosuke Niwa <rniwa@webkit.org> 2 12 -
TabularUnified trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp ¶
r268086 r268243 1805 1805 1806 1806 auto* userContentController = WebUserContentControllerProxy::get(*userContentControllerIdentifier); 1807 if (!userContentController) { 1808 ASSERT_NOT_REACHED(); 1807 if (!userContentController) 1809 1808 return { }; 1810 }1811 1809 1812 1810 return userContentController->contentRuleListData();
Note:
See TracChangeset
for help on using the changeset viewer.