Changeset 157394 in webkit


Ignore:
Timestamp:
Oct 14, 2013, 3:41:26 AM (12 years ago)
Author:
mario@webkit.org
Message:

[EFL] Present replaced objects with 0xFFFC character
https://bugs.webkit.org/show_bug.cgi?id=122744

Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-10-14
Reviewed by Mario Sanchez Prada.

Source/WebCore:

Replaced elements should be emitted in GTK/EFL and
marked their presence with the replacement character.

  • accessibility/AccessibilityObject.cpp:

(WebCore::AccessibilityObject::textIteratorBehaviorForTextRange):

LayoutTests:

Added new accessibility expectation after r156532.

  • platform/efl-wk2/TestExpectations:
  • platform/efl/accessibility/deleting-iframe-destroys-axcache-expected.txt: Added.
Location:
trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r157393 r157394  
     12013-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
    1132013-09-16  Sergio Villar Senin  <svillar@igalia.com>
    214
  • trunk/LayoutTests/platform/efl-wk2/TestExpectations

    r157325 r157394  
    181181webkit.org/b/112019 accessibility/title-ui-element-correctness.html [ Failure ]
    182182
    183 accessibility/deleting-iframe-destroys-axcache.html [ Skip ]
    184183accessibility/img-fallsback-to-title.html [ Skip ]
    185184accessibility/internal-link-anchors2.html [ Skip ]
  • trunk/Source/WebCore/ChangeLog

    r157393 r157394  
     12013-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
    1142013-09-16  Sergio Villar Senin  <svillar@igalia.com>
    215
  • trunk/Source/WebCore/accessibility/AccessibilityObject.cpp

    r156835 r157394  
    19611961    TextIteratorBehavior behavior = TextIteratorIgnoresStyleVisibility;
    19621962   
    1963 #if PLATFORM(GTK)
     1963#if PLATFORM(GTK) || PLATFORM(EFL)
    19641964    // We need to emit replaced elements for GTK, and present
    19651965    // them with the 'object replacement character' (0xFFFC).
Note: See TracChangeset for help on using the changeset viewer.