Skip to content

Commit

Permalink
REGRESSION(271118@main): CheckboxInputType.cpp should include RenderS…
Browse files Browse the repository at this point in the history
…tyleInlines.h

https://bugs.webkit.org/show_bug.cgi?id=265108

Unreviewed build fix. Windows port debug builds can't compile after
271118@main with the following error.

> WebCore\rendering\style\RenderStyle.h(381,17): error: inline function 'WebCore::RenderStyle::hasEffectiveAppearance' is not defined [-Werror,-Wundefined-inline]
>   381 |     inline bool hasEffectiveAppearance() const;
>       |                 ^
> WebCore\html/CheckboxInputType.cpp(143,43): note: used here
>   143 |     ASSERT(element()->renderer()->style().hasEffectiveAppearance());
>       |                                           ^

* Source/WebCore/html/CheckboxInputType.cpp:

Canonical link: https://commits.webkit.org/271125@main
  • Loading branch information
fujii committed Nov 26, 2023
1 parent b931824 commit f3616fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/WebCore/html/CheckboxInputType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#include "LocalizedStrings.h"
#include "Page.h"
#include "RenderElement.h"
#include "RenderStyleInlines.h"
#include "RenderTheme.h"
#include "ScopedEventQueue.h"
#include "ScriptDisallowedScope.h"
Expand Down

0 comments on commit f3616fd

Please sign in to comment.