Title: [266373] trunk/Source/WebCore
Revision
266373
Author
[email protected]
Date
2020-08-31 16:19:19 -0700 (Mon, 31 Aug 2020)

Log Message

Unreviewed. Remove the unused variable build warning since r238538.

No new tests, no new behaviors.

* html/HTMLImageElement.cpp:
(WebCore::HTMLImageElement::copyNonAttributePropertiesFromElement):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (266372 => 266373)


--- trunk/Source/WebCore/ChangeLog	2020-08-31 23:16:18 UTC (rev 266372)
+++ trunk/Source/WebCore/ChangeLog	2020-08-31 23:19:19 UTC (rev 266373)
@@ -1,3 +1,12 @@
+2020-08-31  Joonghun Park  <[email protected]>
+
+        Unreviewed. Remove the unused variable build warning since r238538.
+
+        No new tests, no new behaviors.
+
+        * html/HTMLImageElement.cpp:
+        (WebCore::HTMLImageElement::copyNonAttributePropertiesFromElement):
+
 2020-08-31  James Darpinian  <[email protected]>
 
         Implement WEBGL_compressed_texture_s3tc_srgb extension

Modified: trunk/Source/WebCore/html/HTMLImageElement.cpp (266372 => 266373)


--- trunk/Source/WebCore/html/HTMLImageElement.cpp	2020-08-31 23:16:18 UTC (rev 266372)
+++ trunk/Source/WebCore/html/HTMLImageElement.cpp	2020-08-31 23:19:19 UTC (rev 266373)
@@ -814,6 +814,8 @@
     auto& sourceImage = static_cast<const HTMLImageElement&>(source);
 #if ENABLE(ATTACHMENT_ELEMENT)
     m_pendingClonedAttachmentID = !sourceImage.m_pendingClonedAttachmentID.isEmpty() ? sourceImage.m_pendingClonedAttachmentID : sourceImage.attachmentIdentifier();
+#else
+    UNUSED_PARAM(sourceImage);
 #endif
     Element::copyNonAttributePropertiesFromElement(source);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to