Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: ac3c406ea0f5aa665c5e795a1f60a582803e5910
      
https://github.com/WebKit/WebKit/commit/ac3c406ea0f5aa665c5e795a1f60a582803e5910
  Author: Ahmad Saleem <[email protected]>
  Date:   2026-09-06 (Sun, 06 Sep 2026)

  Changed paths:
    M Source/WebCore/style/computed/StyleComputedStyleBase.h

  Log Message:
  -----------
  InheritedFlags exceeds 8 bytes on Windows after ENABLE_TEXT_AUTOSIZING removal
https://bugs.webkit.org/show_bug.cgi?id=323575
rdar://186817362

Unreviewed build fix.

Removing ENABLE(TEXT_AUTOSIZING) unconditionally added the `autosizeStatus`
bitfield to InheritedFlags. Declared `unsigned` (4-byte) while its neighbours
are `unsigned char`, it opened a new storage unit under the Microsoft ABI
(clang-cl), growing InheritedFlags 8->12 and ComputedStyle 64->72 and tripping
their size static_asserts. Clang's Itanium ABI packs mixed-type bitfields, so
this was Windows-only. Declare it `unsigned char` to match; the value is a
uint8_t-backed OptionSet using only 5 bits, so range is unchanged.

* Source/WebCore/style/computed/StyleComputedStyleBase.h:

Canonical link: https://commits.webkit.org/320599@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications

Reply via email to