Changeset 285710 in webkit
- Timestamp:
- Nov 12, 2021, 2:50:47 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/selectors/variable-revert-crash-expected.txt (added)
-
LayoutTests/fast/selectors/variable-revert-crash.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/style/StyleBuilderState.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r285709 r285710 1 2021-11-12 Antti Koivisto <antti@apple.com> 2 3 REGRESSION(r285624) Using revert keyword with a css variable hits assert 4 https://bugs.webkit.org/show_bug.cgi?id=233031 5 rdar://85332271 6 7 Reviewed by Tim Horton. 8 9 * fast/selectors/variable-revert-crash-expected.txt: Added. 10 * fast/selectors/variable-revert-crash.html: Added. 11 1 12 2021-11-11 Sergio Villar Senin <svillar@igalia.com> 2 13 -
trunk/Source/WebCore/ChangeLog
r285709 r285710 1 2021-11-12 Antti Koivisto <antti@apple.com> 2 3 REGRESSION(r285624) Using revert keyword with a css variable hits assert 4 https://bugs.webkit.org/show_bug.cgi?id=233031 5 rdar://85332271 6 7 Reviewed by Tim Horton. 8 9 Test: fast/selectors/variable-revert-crash.html 10 11 * style/StyleBuilderState.h: 12 13 Default initialization set the variable to a value that is not in the enumeration. 14 1 15 2021-11-11 Sergio Villar Senin <svillar@igalia.com> 2 16 -
trunk/Source/WebCore/style/StyleBuilderState.h
r285624 r285710 136 136 HashSet<String> m_inProgressPropertiesCustom; 137 137 138 CascadeLevel m_cascadeLevel { };138 CascadeLevel m_cascadeLevel { CascadeLevel::Author }; 139 139 ScopeOrdinal m_styleScopeOrdinal { }; 140 140 CascadeLayerPriority m_cascadeLayerPriority { };
Note:
See TracChangeset
for help on using the changeset viewer.