Changeset 285994 in webkit
- Timestamp:
- Nov 18, 2021, 2:43:19 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/atspi/AccessibilityObjectTextAtspi.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r285993 r285994 1 2021-11-18 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 Unreviewed. Fix GTK build with ATSPI enaled after r285904 4 5 * accessibility/atspi/AccessibilityObjectTextAtspi.cpp: 6 (WebCore::AccessibilityObjectAtspi::textAttributes const): 7 1 8 2021-11-18 Youenn Fablet <youenn@apple.com> 2 9 -
trunk/Source/WebCore/accessibility/atspi/AccessibilityObjectTextAtspi.cpp
r285339 r285994 758 758 addAttributeIfNeeded("weight"_s, makeString(static_cast<float>(style.fontCascade().weight()))); 759 759 addAttributeIfNeeded("style"_s, style.fontCascade().italic() ? "italic" : "normal"); 760 addAttributeIfNeeded("strikethrough"_s, style.textDecoration() & TextDecoration ::LineThrough ? "true" : "false");761 addAttributeIfNeeded("underline"_s, style.textDecoration() & TextDecoration ::Underline ? "single" : "none");760 addAttributeIfNeeded("strikethrough"_s, style.textDecoration() & TextDecorationLine::LineThrough ? "true" : "false"); 761 addAttributeIfNeeded("underline"_s, style.textDecoration() & TextDecorationLine::Underline ? "single" : "none"); 762 762 addAttributeIfNeeded("invisible"_s, style.visibility() == Visibility::Hidden ? "true" : "false"); 763 763 addAttributeIfNeeded("editable"_s, m_coreObject->canSetValueAttribute() ? "true" : "false");
Note:
See TracChangeset
for help on using the changeset viewer.