WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 131294
[AX][GTK] No new lines in some AX tests output
https://bugs.webkit.org/show_bug.cgi?id=131294
Summary
[AX][GTK] No new lines in some AX tests output
Sergio Villar Senin
Reported
2014-04-07 00:49:05 PDT
Several tests fail: accessibility/adjacent-continuations-cause-assertion-failure.html accessibility/deleting-iframe-destroys-axcache.html accessibility/div-within-anchors-causes-crash.html accessibility/lists.html This is the kind of errors bots are observing: -AXRole: AXWebArea - AXRole: AXSection AXValue: y - AXRole: AXSection AXValue: End of test +AXRole: AXWebArea AXValue: x<\n>y<\n>z<\n>End of test<\n>Make sure that a debug assert is not triggered when constructing the accessibility tree for this page.<\n><\n>On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".<\n><\n><\n>
Attachments
Patch proposal
(6.68 KB, patch)
2014-04-09 03:49 PDT
,
Mario Sanchez Prada
no flags
Details
Formatted Diff
Diff
Patch proposal
(6.68 KB, patch)
2014-04-09 05:18 PDT
,
Mario Sanchez Prada
mrobinson
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2014-04-07 00:49:22 PDT
<
rdar://problem/16537388
>
Sergio Villar Senin
Comment 2
2014-04-07 00:58:43 PDT
Actually the failures is not only about the "</n>" thing, but it seems that some roles for children are not printed.
Sergio Villar Senin
Comment 3
2014-04-07 01:20:19 PDT
Another 3 more tests platform/gtk/accessibility/entry-and-password.html platform/gtk/accessibility/media-emits-object-replacement.html platform/gtk/accessibility/replaced-objects-in-anonymous-blocks.html
Mario Sanchez Prada
Comment 4
2014-04-08 08:48:31 PDT
Curiously enough, I can only reproduce this with WebKit2 and WKTR. With WebKit1 and DRT everything is fine. I'm taking a look to this right now
Martin Robinson
Comment 5
2014-04-08 09:05:57 PDT
(In reply to
comment #4
)
> Curiously enough, I can only reproduce this with WebKit2 and WKTR. With WebKit1 and DRT everything is fine. > > I'm taking a look to this right now
Great. And FWIW, WebKit1 is toast soon.
Mario Sanchez Prada
Comment 6
2014-04-08 09:19:37 PDT
(In reply to
comment #5
)
> (In reply to
comment #4
) > > Curiously enough, I can only reproduce this with WebKit2 and WKTR. With WebKit1 and DRT everything is fine. > > > > I'm taking a look to this right now > > Great. And FWIW, WebKit1 is toast soon.
I know. Just mentioned it because I found the difference in behaviour quite interesting, as it could mean the problem is not in WebKit itself, but in the testing tools
Carlos Alberto Lopez Perez
Comment 7
2014-04-08 10:18:31 PDT
Two more tests are also failing: * accessibility/children-changed-sends-notification.html * accessibility/notification-listeners.html The diffs are the following: --- /stuff/webkit/webkit/layout-test-results/accessibility/children-changed-sends-notification-expected.txt +++ /stuff/webkit/webkit/layout-test-results/accessibility/children-changed-sends-notification-actual.txt @@ -6,12 +6,8 @@ Plain text paragraph End of test -PARAGRAPH notification: AXChildrenRemoved -GLOBAL notification: AXChildrenRemoved on element with role AXRole: AXParagraph -PARAGRAPH notification: AXChildrenAdded -GLOBAL notification: AXChildrenAdded on element with role AXRole: AXParagraph PASS paragraphNotificationCount is globalNotificationCount -PASS globalNotificationCount is 2 +FAIL globalNotificationCount should be 2. Was 0. PASS successfullyParsed is true TEST COMPLETE --- /stuff/webkit/webkit/layout-test-results/accessibility/notification-listeners-expected.txt +++ /stuff/webkit/webkit/layout-test-results/accessibility/notification-listeners-actual.txt @@ -7,11 +7,13 @@ Slider SELECT AXInvalidStatusChanged GLOBAL AXInvalidStatusChanged on element with role AXRole: AXComboBox +SLIDER AXChildrenAdded +GLOBAL AXChildrenAdded on element with role AXRole: AXSlider SLIDER AXValueChanged GLOBAL AXValueChanged on element with role AXRole: AXSlider PASS selectNotificationCount is 1 -PASS sliderNotificationCount is 1 -PASS globalNotificationCount is 2 +FAIL sliderNotificationCount should be 1. Was 2. +FAIL globalNotificationCount should be 2. Was 3. PASS successfullyParsed is true TEST COMPLETE
Sergio Villar Senin
Comment 8
2014-04-08 11:21:17 PDT
(In reply to
comment #7
)
> Two more tests are also failing: > > * accessibility/children-changed-sends-notification.html > * accessibility/notification-listeners.html
I didn't include them because there seem to be different types of failures. The differences in the output with the expected results are not the same.
Carlos Alberto Lopez Perez
Comment 9
2014-04-08 12:19:11 PDT
(In reply to
comment #8
)
> (In reply to
comment #7
) > > Two more tests are also failing: > > > > * accessibility/children-changed-sends-notification.html > > * accessibility/notification-listeners.html > > I didn't include them because there seem to be different types of failures. The differences in the output with the expected results are not the same.
Ok. Reported it on
bug #131380
Mario Sanchez Prada
Comment 10
2014-04-09 02:25:29 PDT
(In reply to
comment #0
)
> accessibility/lists.html
Quick thing: this test is not failing due to the same issue, but due to an <hr> being removed in
http://trac.webkit.org/changeset/166175
, which just needs rebaselining. I'll land a gardening patch related to that independently
Mario Sanchez Prada
Comment 11
2014-04-09 03:41:23 PDT
(In reply to
comment #10
)
> (In reply to
comment #0
) > > accessibility/lists.html > > Quick thing: this test is not failing due to the same issue, but due to an <hr> being removed in
http://trac.webkit.org/changeset/166175
, which just needs rebaselining. > > I'll land a gardening patch related to that independently
http://trac.webkit.org/changeset/167009
Mario Sanchez Prada
Comment 12
2014-04-09 03:47:24 PDT
The problem is caused by
http://trac.webkit.org/changeset/166194
because, as per my own recommendation, the call to updateRoleAfterChildrenCreation() is happening now in AccessibilityObject::updateBackingStore(), which unveiled a problem in the way we determined which ATK interfaces to implement in the ATK wrapper. Because of this issue, all these tests were printing a lot of text when called the stringValue() function of AccessibilityUIElement through WKTR, since the ATK object for the WebArea would be recognized as implementing AtkText. Therefore, calling atk_text_get_text() over it would return a textual representation of the whole web page (internally using WebCore's TextIterator), which resulted in all that text being shown in the output. And of course, the javascript code in buildAccessibilityTree() would not keep digging into the subtree for the WebArea because, due to the WebArea already returning a lot of text through the AtkText interface, and due to that text already including the 'End of test' string (used as condition to stop digging more in the tree). So, we need to make sure we never, ever, implement AtkText for objects with the WebArea role. Patch coming soon
Mario Sanchez Prada
Comment 13
2014-04-09 03:49:47 PDT
Created
attachment 228953
[details]
Patch proposal See the patch proposal attached. Notice that this patch not only prevents the WebArea object from implementing AtkText but also AtkHypertext, which I believe is correct because that other interface will be implemented anyway by the real containers of the different blocks of content in the web page.
Mario Sanchez Prada
Comment 14
2014-04-09 05:18:30 PDT
Created
attachment 228956
[details]
Patch proposal Forgot the parenthesis in the previous patch. Adding them now to make EFL happy (well, and because I think it's clearer this way too)
Martin Robinson
Comment 15
2014-04-09 07:36:59 PDT
Comment on
attachment 228956
[details]
Patch proposal View in context:
https://bugs.webkit.org/attachment.cgi?id=228956&action=review
> Source/WebCore/ChangeLog:8 > + Do not implement Hypetext or AtkText for the WebArea. Those
Small typo: Hypetext -> Hypertext
Mario Sanchez Prada
Comment 16
2014-04-09 08:02:33 PDT
(In reply to
comment #15
)
> (From update of
attachment 228956
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=228956&action=review
> > > Source/WebCore/ChangeLog:8 > > + Do not implement Hypetext or AtkText for the WebArea. Those > > Small typo: Hypetext -> Hypertext
Oops! Thanks
Mario Sanchez Prada
Comment 17
2014-04-09 08:06:31 PDT
Committed
r167011
: <
http://trac.webkit.org/changeset/167011
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug