Title: [260625] trunk/Source/WebCore
- Revision
- 260625
- Author
- [email protected]
- Date
- 2020-04-24 01:27:00 -0700 (Fri, 24 Apr 2020)
Log Message
Add missing HTMLNames:: namespace prefix to usage of liTag object
Unreviewed build fix.
No new tests needed.
* editing/TextManipulationController.cpp:
(WebCore::TextManipulationController::observeParagraphs):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (260624 => 260625)
--- trunk/Source/WebCore/ChangeLog 2020-04-24 07:59:30 UTC (rev 260624)
+++ trunk/Source/WebCore/ChangeLog 2020-04-24 08:27:00 UTC (rev 260625)
@@ -1,3 +1,14 @@
+2020-04-24 Adrian Perez de Castro <[email protected]>
+
+ Add missing HTMLNames:: namespace prefix to usage of liTag object
+
+ Unreviewed build fix.
+
+ No new tests needed.
+
+ * editing/TextManipulationController.cpp:
+ (WebCore::TextManipulationController::observeParagraphs):
+
2020-04-23 Rob Buis <[email protected]>
Make CachedResourceLoader more conforming to Fetch specification
Modified: trunk/Source/WebCore/editing/TextManipulationController.cpp (260624 => 260625)
--- trunk/Source/WebCore/editing/TextManipulationController.cpp 2020-04-24 07:59:30 UTC (rev 260624)
+++ trunk/Source/WebCore/editing/TextManipulationController.cpp 2020-04-24 08:27:00 UTC (rev 260625)
@@ -277,7 +277,7 @@
RefPtr<Element> enclosingParagraphElement;
auto isEnclosingParagraphElement = [](const Element& element) {
- if (element.hasTagName(liTag)) {
+ if (element.hasTagName(HTMLNames::liTag)) {
auto* renderer = element.renderer();
return renderer && renderer->style().display() == DisplayType::Block;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes