Diff
Modified: trunk/Source/WebCore/ChangeLog (293085 => 293086)
--- trunk/Source/WebCore/ChangeLog 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/ChangeLog 2022-04-20 07:43:04 UTC (rev 293086)
@@ -1,3 +1,22 @@
+2022-04-20 Diego Pino Garcia <[email protected]>
+
+ Unreviewed, non-unified build fixes after r293052
+
+ * css/typedom/numeric/CSSMathMin.cpp:
+ * css/typedom/numeric/CSSMathNegate.cpp:
+ * css/typedom/numeric/CSSMathProduct.cpp:
+ * css/typedom/numeric/CSSMathSum.cpp:
+ * css/typedom/transform/CSSSkew.cpp:
+ * dom/CustomElementRegistry.cpp:
+ * html/InputTypeNames.cpp:
+ * inspector/agents/InspectorCSSAgent.cpp:
+ * page/FocusController.cpp:
+ * style/AttributeChangeInvalidation.cpp:
+ * style/ClassChangeInvalidation.cpp:
+ * style/ElementRuleCollector.cpp:
+ * style/IdChangeInvalidation.cpp:
+ * style/StyleSharingResolver.cpp:
+
2022-04-20 Tim Nguyen <[email protected]>
REGRESSION(r293044): Extraneous border around AutoFill buttons in `active` and `hover` states
Modified: trunk/Source/WebCore/css/typedom/numeric/CSSMathMin.cpp (293085 => 293086)
--- trunk/Source/WebCore/css/typedom/numeric/CSSMathMin.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/css/typedom/numeric/CSSMathMin.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -31,6 +31,7 @@
#if ENABLE(CSS_TYPED_OM)
#include <wtf/IsoMallocInlines.h>
+#include <wtf/text/StringBuilder.h>
namespace WebCore {
Modified: trunk/Source/WebCore/css/typedom/numeric/CSSMathNegate.cpp (293085 => 293086)
--- trunk/Source/WebCore/css/typedom/numeric/CSSMathNegate.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/css/typedom/numeric/CSSMathNegate.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -31,6 +31,7 @@
#if ENABLE(CSS_TYPED_OM)
#include <wtf/IsoMallocInlines.h>
+#include <wtf/text/StringBuilder.h>
namespace WebCore {
Modified: trunk/Source/WebCore/css/typedom/numeric/CSSMathProduct.cpp (293085 => 293086)
--- trunk/Source/WebCore/css/typedom/numeric/CSSMathProduct.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/css/typedom/numeric/CSSMathProduct.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -28,6 +28,7 @@
#if ENABLE(CSS_TYPED_OM)
+#include "CSSMathInvert.h"
#include "CSSNumericArray.h"
#include "ExceptionOr.h"
#include <wtf/IsoMallocInlines.h>
Modified: trunk/Source/WebCore/css/typedom/numeric/CSSMathSum.cpp (293085 => 293086)
--- trunk/Source/WebCore/css/typedom/numeric/CSSMathSum.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/css/typedom/numeric/CSSMathSum.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -28,6 +28,7 @@
#if ENABLE(CSS_TYPED_OM)
+#include "CSSMathNegate.h"
#include "CSSNumericArray.h"
#include "ExceptionOr.h"
#include <wtf/Algorithms.h>
Modified: trunk/Source/WebCore/css/typedom/transform/CSSSkew.cpp (293085 => 293086)
--- trunk/Source/WebCore/css/typedom/transform/CSSSkew.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/css/typedom/transform/CSSSkew.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -32,6 +32,7 @@
#if ENABLE(CSS_TYPED_OM)
+#include "CSSUnitValue.h"
#include "DOMMatrix.h"
#include "ExceptionOr.h"
#include <wtf/IsoMallocInlines.h>
Modified: trunk/Source/WebCore/dom/CustomElementRegistry.cpp (293085 => 293086)
--- trunk/Source/WebCore/dom/CustomElementRegistry.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/dom/CustomElementRegistry.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -29,6 +29,7 @@
#include "CustomElementReactionQueue.h"
#include "DOMWindow.h"
#include "Document.h"
+#include "ElementRareData.h"
#include "JSCustomElementInterface.h"
#include "JSDOMPromiseDeferred.h"
#include "MathMLNames.h"
Modified: trunk/Source/WebCore/html/InputTypeNames.cpp (293085 => 293086)
--- trunk/Source/WebCore/html/InputTypeNames.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/html/InputTypeNames.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -22,6 +22,7 @@
#include "config.h"
#include "InputTypeNames.h"
+#include "HTMLNames.h"
#include <wtf/NeverDestroyed.h>
namespace WebCore {
Modified: trunk/Source/WebCore/inspector/agents/InspectorCSSAgent.cpp (293085 => 293086)
--- trunk/Source/WebCore/inspector/agents/InspectorCSSAgent.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/inspector/agents/InspectorCSSAgent.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -42,6 +42,7 @@
#include "DOMWindow.h"
#include "ElementAncestorIterator.h"
#include "ElementChildIterator.h"
+#include "ElementRareData.h"
#include "Font.h"
#include "FontCache.h"
#include "FontCascade.h"
Modified: trunk/Source/WebCore/page/FocusController.cpp (293085 => 293086)
--- trunk/Source/WebCore/page/FocusController.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/page/FocusController.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -35,6 +35,7 @@
#include "Editor.h"
#include "EditorClient.h"
#include "Element.h"
+#include "ElementRareData.h"
#include "ElementTraversal.h"
#include "Event.h"
#include "EventHandler.h"
Modified: trunk/Source/WebCore/style/AttributeChangeInvalidation.cpp (293085 => 293086)
--- trunk/Source/WebCore/style/AttributeChangeInvalidation.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/style/AttributeChangeInvalidation.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -27,6 +27,7 @@
#include "AttributeChangeInvalidation.h"
#include "ElementIterator.h"
+#include "ElementRareData.h"
#include "StyleInvalidationFunctions.h"
namespace WebCore {
Modified: trunk/Source/WebCore/style/ClassChangeInvalidation.cpp (293085 => 293086)
--- trunk/Source/WebCore/style/ClassChangeInvalidation.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/style/ClassChangeInvalidation.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -27,6 +27,7 @@
#include "ClassChangeInvalidation.h"
#include "ElementChildIterator.h"
+#include "ElementRareData.h"
#include "SpaceSplitString.h"
#include "StyleInvalidationFunctions.h"
#include <wtf/BitVector.h>
Modified: trunk/Source/WebCore/style/ElementRuleCollector.cpp (293085 => 293086)
--- trunk/Source/WebCore/style/ElementRuleCollector.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/style/ElementRuleCollector.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -35,6 +35,7 @@
#include "CSSValueKeywords.h"
#include "ContainerQueryEvaluator.h"
#include "ElementInlines.h"
+#include "ElementRareData.h"
#include "HTMLElement.h"
#include "HTMLSlotElement.h"
#include "SVGElement.h"
Modified: trunk/Source/WebCore/style/IdChangeInvalidation.cpp (293085 => 293086)
--- trunk/Source/WebCore/style/IdChangeInvalidation.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/style/IdChangeInvalidation.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -27,6 +27,7 @@
#include "IdChangeInvalidation.h"
#include "ElementChildIterator.h"
+#include "ElementRareData.h"
#include "StyleInvalidationFunctions.h"
#include "StyleInvalidator.h"
Modified: trunk/Source/WebCore/style/StyleSharingResolver.cpp (293085 => 293086)
--- trunk/Source/WebCore/style/StyleSharingResolver.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebCore/style/StyleSharingResolver.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -27,6 +27,7 @@
#include "StyleSharingResolver.h"
#include "ElementInlines.h"
+#include "ElementRareData.h"
#include "ElementRuleCollector.h"
#include "FullscreenManager.h"
#include "HTMLDialogElement.h"
Modified: trunk/Source/WebKit/ChangeLog (293085 => 293086)
--- trunk/Source/WebKit/ChangeLog 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebKit/ChangeLog 2022-04-20 07:43:04 UTC (rev 293086)
@@ -1,3 +1,10 @@
+2022-04-20 Diego Pino Garcia <[email protected]>
+
+ Unreviewed, non-unified build fixes after r293052
+
+ * WebProcess/FullScreen/WebFullScreenManager.cpp:
+ (WebKit::WebFullScreenManager::handleEvent):
+
2022-04-19 Ben Nham <[email protected]>
Handle public token updates in webpushd
Modified: trunk/Source/WebKit/WebProcess/FullScreen/WebFullScreenManager.cpp (293085 => 293086)
--- trunk/Source/WebKit/WebProcess/FullScreen/WebFullScreenManager.cpp 2022-04-20 07:24:19 UTC (rev 293085)
+++ trunk/Source/WebKit/WebProcess/FullScreen/WebFullScreenManager.cpp 2022-04-20 07:43:04 UTC (rev 293086)
@@ -373,7 +373,7 @@
void WebFullScreenManager::handleEvent(WebCore::ScriptExecutionContext& context, WebCore::Event& event)
{
#if ENABLE(VIDEO)
- RefPtr targetElement = dynamicDowncast<Element>(event.currentTarget());
+ RefPtr targetElement = dynamicDowncast<WebCore::Element>(event.currentTarget());
if (!m_element || &context != &m_element->document() || !targetElement)
return;