Changeset 157394 in webkit
- Timestamp:
- Oct 14, 2013, 3:41:26 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r157393 r157394 1 2013-10-14 Krzysztof Czech <k.czech@samsung.com> 2 3 [EFL] Present replaced objects with 0xFFFC character 4 https://bugs.webkit.org/show_bug.cgi?id=122744 5 6 Reviewed by Mario Sanchez Prada. 7 8 Added new accessibility expectation after r156532. 9 10 * platform/efl-wk2/TestExpectations: 11 * platform/efl/accessibility/deleting-iframe-destroys-axcache-expected.txt: Added. 12 1 13 2013-09-16 Sergio Villar Senin <svillar@igalia.com> 2 14 -
trunk/LayoutTests/platform/efl-wk2/TestExpectations
r157325 r157394 181 181 webkit.org/b/112019 accessibility/title-ui-element-correctness.html [ Failure ] 182 182 183 accessibility/deleting-iframe-destroys-axcache.html [ Skip ]184 183 accessibility/img-fallsback-to-title.html [ Skip ] 185 184 accessibility/internal-link-anchors2.html [ Skip ] -
trunk/Source/WebCore/ChangeLog
r157393 r157394 1 2013-10-14 Krzysztof Czech <k.czech@samsung.com> 2 3 [EFL] Present replaced objects with 0xFFFC character 4 https://bugs.webkit.org/show_bug.cgi?id=122744 5 6 Reviewed by Mario Sanchez Prada. 7 8 Replaced elements should be emitted in GTK/EFL and 9 marked their presence with the replacement character. 10 11 * accessibility/AccessibilityObject.cpp: 12 (WebCore::AccessibilityObject::textIteratorBehaviorForTextRange): 13 1 14 2013-09-16 Sergio Villar Senin <svillar@igalia.com> 2 15 -
trunk/Source/WebCore/accessibility/AccessibilityObject.cpp
r156835 r157394 1961 1961 TextIteratorBehavior behavior = TextIteratorIgnoresStyleVisibility; 1962 1962 1963 #if PLATFORM(GTK) 1963 #if PLATFORM(GTK) || PLATFORM(EFL) 1964 1964 // We need to emit replaced elements for GTK, and present 1965 1965 // them with the 'object replacement character' (0xFFFC).
Note:
See TracChangeset
for help on using the changeset viewer.