Closed Bug 606924 Opened 14 years ago Closed 13 years ago

create complete accessible tree

Categories

(Core :: Disability Access APIs, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla2.0b11
Tracking Status
blocking2.0 --- betaN+

People

(Reporter: surkov, Assigned: surkov)

References

(Blocks 1 open bug)

Details

(Keywords: access, Whiteboard: [hardblocker][has patch])

Attachments

(7 files, 7 obsolete files)

8.47 KB, patch
fherrera
: review+
davidb
: review+
Details | Diff | Splinter Review
18.76 KB, patch
davidb
: review+
Details | Diff | Splinter Review
18.66 KB, patch
davidb
: review+
Details | Diff | Splinter Review
4.00 KB, patch
davidb
: review+
Details | Diff | Splinter Review
13.01 KB, patch
Details | Diff | Splinter Review
8.15 KB, patch
fherrera
: review+
Details | Diff | Splinter Review
8.44 KB, patch
fherrera
: review+
davidb
: review+
Details | Diff | Splinter Review
We should create accessible tree when notified that new content has been inserted. That allows us to not traverse up the DOM tree looking for cached accessibles and then go down and cache children. So getting slower on content insertion notification handling, we get faster with accessible tree operations in general.

On the another hand it allows us to process the tree and cache necessary information about accessible tree. As side node this allows us to fix bug 573469.
Note to self: one issue with computing the tree lazily (on demand), is that we can miss important relations. Talking with Alexander yesterday, we are thinking that AT tend to walk the whole tree anyways (thereby forcing us to create it).
Note to self: we might have to use AT sniffing here if the upfront perf cost is too high.
I think we need to fix it since this may cause the accessible tree creation at wrong time. We could lie to AT and do not return children (pend their creation and fire mutation events after that) but it sounds tricky and should be expensive.
blocking2.0: --- → ?
Depends on: 498015
Why should this block?
(In reply to comment #4)
> Why should this block?

Doesn't the comment #3 make things clear?
As per our discussion, this bug is another one of our bugs related to the accessible tree being incorrect.
blocking2.0: ? → final+
Assignee: nobody → surkov.alexander
Whiteboard: [hardblocker]
Attachment #502714 - Flags: review?(fherrera)
Status: NEW → ASSIGNED
Attachment #502714 - Attachment is obsolete: true
Attachment #503103 - Flags: review?(fherrera)
Attachment #502714 - Flags: review?(fherrera)
Attached patch part2v1: create initial tree (obsolete) — Splinter Review
Attachment #503406 - Flags: review?(bolterbugz)
Comment on attachment 503406 [details] [diff] [review]
part2v1: create initial tree

that's not exactly what we need
Attachment #503406 - Attachment is obsolete: true
Attachment #503406 - Flags: review?(bolterbugz)
Comment on attachment 503406 [details] [diff] [review]
part2v1: create initial tree

though that's not exactly what we want but we want this, we need to create initial accessible tree for documents that were loaded before a11y was started. We can do that at safe time only, so that if accessible creation is safe when document is created then anyways it doesn't make sense to do that because we can't rely on this behavior.
Attachment #503406 - Attachment is obsolete: false
Attachment #503406 - Flags: review?(bolterbugz)
Comment on attachment 503103 [details] [diff] [review]
part1v2: create tree on content insertion [landed 2011-01-20]

r=me conditional on Fer's review and:

>@@ -1949,17 +1949,21 @@ nsDocAccessible::UpdateTreeInternal(nsAc

>-    if (!aIsInsert) {
>+    if (aIsInsert) {
>+      // Create accessible tree for shown accessible.
>+      CacheChildrenInSubtree(accessible);

This is going to end up calling ensure children for every ContentRangeInserted. I hope it doesn't bite our perf badly?


>+++ b/accessible/tests/mochitest/test_nsIAccessibleHyperText.html

Nit: forgot to reference this bug?
Attachment #503103 - Flags: review+
Comment on attachment 503406 [details] [diff] [review]
part2v1: create initial tree

> NotificationController::NotificationController(nsDocAccessible* aDocument,
>                                                nsIPresShell* aPresShell) :
>   mObservingState(eNotObservingRefresh), mDocument(aDocument),
>-  mPresShell(aPresShell)
>+  mPresShell(aPresShell), mTreeConstructedState(eTreeConstructionPending)
> {
>+  // Schedule initial accessible tree construction.
>+  ScheduleProcessing();

I've lost track of where this method gets introduced (not in mxr).
 
>+  // Initial accessible tree construction.
>+  if (mTreeConstructedState == eTreeConstructionPending) {
>+    mTreeConstructedState = eTreeConstructed;
>+    mDocument->CacheChildrenInSubtree(mDocument);
>+
>+    // Prune any pending content insertions.
>+    mContentInsertions.Clear();
>+  }

This looks correct.
(In reply to comment #13)
> Could you rephrase comment 12?

1) We need to create an accessible tree for document that was created before a11y is started
2) It's ok to do via refresh observer (sometimes we could do it early but we can't be guaranteed we can do that always, that adds ambiguity and I want to avoid it).
(In reply to comment #14)

> This is going to end up calling ensure children for every ContentRangeInserted.
> I hope it doesn't bite our perf badly?

It doesn't when screen reader is running. When this bug is finished then we should get good perf improvement. It's hard to test in not screen reader case. That depends entirely on the page. It shouldn't regress us on dynamic pages or pages having lot of form controls that require the user be active. It may regress on static pages that contains readable content only but I don't think it'll be noticeable regression even on War and Peace of Lev Tolstoy since I don't think the page will have large hierarchy.

> >+++ b/accessible/tests/mochitest/test_nsIAccessibleHyperText.html
> 
> Nit: forgot to reference this bug?

sounds so, thx.
(In reply to comment #15)

> >+  // Schedule initial accessible tree construction.
> >+  ScheduleProcessing();
> 
> I've lost track of where this method gets introduced (not in mxr).

bug 498015
Blocks: 625653
Summary: create accessible tree when new content is inserted → create complete accessible tree
Depends on: 625693
when the child document is created before parent document (for example, when a11y is started after parent DOM document is created) then binding the child document to tree triggers early tree creation for parent document, it may happen at unsafe time for tree creation.
Attachment #503784 - Flags: review?(bolterbugz)
(In reply to comment #19)
> Created attachment 503784 [details] [diff] [review]
> patch1v3: hanging document concept

try server build - http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-c0d1b34ee26c

Marco, please run with this build for a while when it's ready.
Comment on attachment 503784 [details] [diff] [review]
part3v1: hanging document concept

random failures (http://stage.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-c0d1b34ee26c/try-lnx/tryserver_fedora_test-mochitest-other-build846.txt.gz): can't get a document accessible, needs further investigations
Attachment #503784 - Flags: review?(bolterbugz)
Comment on attachment 503406 [details] [diff] [review]
part2v1: create initial tree

r=me thanks.

(In reply to comment #18)
> (In reply to comment #15)
> 
> > >+  // Schedule initial accessible tree construction.
> > >+  ScheduleProcessing();
> > 
> > I've lost track of where this method gets introduced (not in mxr).
> 
> bug 498015

Ah right, it basically sets up the refresh observer.
Attachment #503406 - Flags: review?(bolterbugz) → review+
(In reply to comment #17)
> (In reply to comment #14)
> 
> > This is going to end up calling ensure children for every ContentRangeInserted.
> > I hope it doesn't bite our perf badly?
> 
> It doesn't when screen reader is running. When this bug is finished then we
> should get good perf improvement. It's hard to test in not screen reader case.
> That depends entirely on the page. It shouldn't regress us on dynamic pages or
> pages having lot of form controls that require the user be active. It may
> regress on static pages that contains readable content only but I don't think
> it'll be noticeable regression even on War and Peace of Lev Tolstoy since I
> don't think the page will have large hierarchy.

OK, and we can optimize later if necessary,.
Attachment #503784 - Attachment is obsolete: true
Attachment #504106 - Flags: review?(bolterbugz)
Attachment #503406 - Attachment description: patch1v2: create initial tree → part2v1: create initial tree
Attachment #503103 - Attachment description: patch1v2: create tree on content insertion → part1v2: create tree on content insertion
Attachment #502714 - Attachment description: patch1v1: create tree on content insertion → part1v1: create tree on content insertion
Attachment #503784 - Attachment description: patch1v3: hanging document concept → part3v1: hanging document concept
Attachment #504106 - Attachment description: patch2v3: hanging document concept → part3v2: hanging document concept
Attachment #504107 - Flags: review?(bolterbugz)
Attachment #504108 - Flags: review?(fherrera)
move GetAccessibleOrContainer to document accessible making it optimal
Attachment #504109 - Flags: review?(fherrera)
fix intermittent mochitest failures
Attachment #504106 - Attachment is obsolete: true
Attachment #504373 - Flags: review?(bolterbugz)
Attachment #504106 - Flags: review?(bolterbugz)
I ran with the latest try-server from this bug over the weekend and found absolutely nothing wrong with it. On the contrary, this adds more stability to the document loading and others, in my subjective view, compared to the try-server build from bug 498015.
(In reply to comment #31)

> Here will be a build that contains all patches -
> http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-41a9659498b3

intermittent mochitest failures
get back null check to GetContainerAccessible
Attachment #504107 - Attachment is obsolete: true
Attachment #504402 - Flags: review?(bolterbugz)
Attachment #504107 - Flags: review?(bolterbugz)
(In reply to comment #32)
> (In reply to comment #31)
> 
> > Here will be a build that contains all patches -
> > http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-41a9659498b3
> 
> intermittent mochitest failures

new try server build, should be ok - http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-a5951167079a
Comment on attachment 504373 [details] [diff] [review]
part3v3: hanging document concept [landed 2011-01-25]

r=me. I like this idea.

>+  // Bind hanging child documents.
>+  PRUint32 childDocCount = mHangingChildDocuments.Length();
>+  for (PRUint32 idx = 0; idx < childDocCount; idx++) {
>+    nsDocAccessible* childDoc = mHangingChildDocuments[idx];
>+
>+    nsIContent* ownerContent = mDocument->GetDocumentNode()->
>+      FindContentForSubDocument(childDoc->GetDocumentNode());

Note mDocument->GetDocumentNode === mDocument right? (If you want to leave it in for readability that's fine since the compiler should fix it).
Attachment #504373 - Flags: review?(bolterbugz) → review+
(In reply to comment #35)

> >+    nsIContent* ownerContent = mDocument->GetDocumentNode()->
> >+      FindContentForSubDocument(childDoc->GetDocumentNode());
> 
> Note mDocument->GetDocumentNode === mDocument right?

no
Attachment #504402 - Flags: review?(bolterbugz) → review+
(In reply to comment #36)
> (In reply to comment #35)
> 
> > >+    nsIContent* ownerContent = mDocument->GetDocumentNode()->
> > >+      FindContentForSubDocument(childDoc->GetDocumentNode());
> > 
> > Note mDocument->GetDocumentNode === mDocument right?
> 
> no

Did you change GetDocumentNode somewhere?
I don't get a question. GetDocumentNode is nsIDocument, mDocument is nsDocAccessible.
(In reply to comment #38)
> I don't get a question. GetDocumentNode is nsIDocument, mDocument is
> nsDocAccessible.

Thank you.
(In reply to comment #34)
> new try server build, should be ok -
> http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-a5951167079a

Using NVDA 2010.2:
* When I launch this build while NVDA is running, things work well - nice!
* I still encounter problems when first visiting a page. Arrowing actually scrolls the document. Tabbing away and back (as per Marco) helps, as does reloading the virtual buffer (ins+f5).
Sigh sorry, for the second bullet I meant to add "When launching NVDA after FF".
ignore content inserted notifications when they happen rather than coalesce them to ignore them later
Attachment #503406 - Attachment is obsolete: true
Attachment #504659 - Flags: review?(bolterbugz)
Comment on attachment 504659 [details] [diff] [review]
part2v2: create initial tree [landed 2011-01-23]

r=me. Comment nits:

> NotificationController::ScheduleContentInsertion(nsAccessible* aContainer,
>                                                  nsIContent* aStartChildNode,
>                                                  nsIContent* aEndChildNode)
> {
>+  // Ignore content insertions until we constructed accessible tree.

Nit: ... until we have constructed ...

>+  if (mTreeConstructedState == eTreeConstructionPending)
>+    return;

Good.


>   /**
>+   * Indicate whether initial construction of the document's accessible tree
>+   * performed or pending. When the document accessible is created then
>+   * we construct its initial accessible tree.
>+   */

Nit: has been performed, or is pending.
Attachment #504659 - Flags: review?(bolterbugz) → review+
Comment on attachment 503103 [details] [diff] [review]
part1v2: create tree on content insertion [landed 2011-01-20]

r=me
Attachment #503103 - Flags: review?(fherrera) → review+
(In reply to comment #34)
> new try server build, should be ok -
> http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-a5951167079a

This one crashes for me reproducibly on pages like http://www.amazon.de. Other pages like http://www.google.com are OK.
(In reply to comment #45)
> (In reply to comment #34)
> > new try server build, should be ok -
> > http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/surkov.alexander@gmail.com-a5951167079a
> 
> This one crashes for me reproducibly on pages like http://www.amazon.de. Other
> pages like http://www.google.com are OK.

Is it crashing at Role()?
I don't know. It crashes with NVDA loaded, and the release build, not the debug one, can't use that. But should be easily reproducible.
That build is out of date a bit. I'll provide a new one.
"part1: create tree on content insertion" is landed on 2.0 beta10 - http://hg.mozilla.org/mozilla-central/rev/d5e9eddf4acd
(In reply to comment #46)
> Is it crashing at Role()?

No, the current nightly build doesn't crash for me, so this does not appear to be bug 626841. I'll give the newest try-server build a go as soon as it's ready and report back if it still crashes for me.
(In reply to comment #49)
> "part1: create tree on content insertion" is landed on 2.0 beta10 -
> http://hg.mozilla.org/mozilla-central/rev/d5e9eddf4acd

Unfortunately this looks to have regressed talos quite a bit.
http://groups.google.com/group/mozilla.dev.tree-management/browse_thread/thread/e1d95e20f33779f9#

I can profile this tomorrow. Alexander, I'll try to catch you as I've promised the thread a response soon.
I can confirm that this latest try-server build and also Thursday's nightly build feel a little less responsive than Wednesday's build over-all. Also, the test cases from bug 570500 all show some higher values in the post-processing bit.

In addition, jumping to an anchor on page load still doesn't work as reliably again as it did in 3.6. I've seen it working once but failing 4 times.
Confirmed with Marco that it is most evident on initial load.
"part2: create initial tree" is landed on 2.0 http://hg.mozilla.org/mozilla-central/rev/26e88d430849
(In reply to comment #53)

> In addition, jumping to an anchor on page load still doesn't work as reliably
> again as it did in 3.6. I've seen it working once but failing 4 times.

Do we have a bug on this?
Comment on attachment 504108 [details] [diff] [review]
part5v1: rename GetCachedAccessible

>+nsDocAccessible::GetAccessible(nsINode* aNode) const

>-    accessible = this;
>+    accessible = const_cast<nsDocAccessible*>(this);

Why is this necessary?
(In reply to comment #57)

> >+nsDocAccessible::GetAccessible(nsINode* aNode) const
> 
> >-    accessible = this;
> >+    accessible = const_cast<nsDocAccessible*>(this);
> 
> Why is this necessary?

not necessary, just making a method a const since it doesn't change the document accessible.
Attachment #503103 - Attachment description: part1v2: create tree on content insertion → part1v2: create tree on content insertion [landed 2011-01-20]
Attachment #504659 - Attachment description: part2v2: create initial tree → part2v2: create initial tree [landed 2011-01-23]
Depends on: 628668
Comment on attachment 504108 [details] [diff] [review]
part5v1: rename GetCachedAccessible

Everything looks ok. r=me
Attachment #504108 - Flags: review?(fherrera) → review+
part3: handing document concept is landed - http://hg.mozilla.org/mozilla-central/rev/e0fc18b3bc41
Attachment #504373 - Attachment description: part3v3: hanging document concept → part3v3: hanging document concept [landed 2011-01-25]
part4: deal with cached tree only is landed - http://hg.mozilla.org/mozilla-central/rev/f0f5638a8f51
Attachment #504402 - Attachment description: part4v2: deal with cached accessible tree only → part4v2: deal with cached accessible tree only [landed 2011-01-26]
Attachment #504109 - Flags: review?(bolterbugz)
updated to trunk
Attachment #504108 - Attachment is obsolete: true
updated to trunk
Attachment #504109 - Attachment is obsolete: true
Attachment #507415 - Flags: review?(fherrera)
Attachment #504109 - Flags: review?(fherrera)
Attachment #504109 - Flags: review?(bolterbugz)
Blocks: 627816
Comment on attachment 507415 [details] [diff] [review]
part6v2: move GetAccessibleOrContainer to nsDocAccessible [landed 2011-01-27]

r=me
Attachment #507415 - Flags: review?(fherrera) → review+
Depends on: 629415
part5 - rename GetCachedAccessible is landed - http://hg.mozilla.org/mozilla-central/rev/635864984350

part6 - move GetAccessibleOrContainer to nsDocAccessible is landed - http://hg.mozilla.org/mozilla-central/rev/0b39828124f9
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla2.0b11
Attachment #507414 - Attachment description: patch5v2: ename GetCachedAccessible → patch5v2: rename GetCachedAccessible [landed 2011-01-27]
Attachment #507415 - Attachment description: part6v2: move GetAccessibleOrContainer → part6v2: move GetAccessibleOrContainer to nsDocAccessible [landed 2011-01-27]
RecreateAccessible leaves a hole for incomplete accessible tree, when the hide event is handled then we destroy the subtree and new one is not created. For now RecreateAccessible tree can be processed as ContentRemoved/ContentInserted pair leaving the optimization for the future. Reopen the bug.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Attachment #507818 - Flags: review?(bolterbugz)
possible crash regression from this in bug 629912
this is marked "blocking final" but does it really need beta coverage.  number of comments and dependency bugs might be an indicator of complexity, and complex changes really should get beta coverage.
Agreed, marking blocking betaN+.
blocking2.0: final+ → betaN+
I don't think this caused the regression. Closing.
Status: REOPENED → RESOLVED
Closed: 13 years ago13 years ago
Resolution: --- → FIXED
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Whiteboard: [hardblocker] → [hardblocker][has patch]
Comment on attachment 507818 [details] [diff] [review]
patch7v1: recreate subtree when root is recreated


> 
>-  nsAccessible* parent = nsnull;
>+  // Check if the node is in DOM still.
>+  nsIContent* parentContent = aContent->GetParent();
>+  if (parentContent && parentContent->IsInDoc()) {
>+    nsAccessible* container = parentContent ?
>+      GetAccessibleOrContainer(parentContent) : this;

If we are inside the if branch, if because parentContent is not null, so I don't understand the "parentContent ? X : Y".
Alexander, does this latest patch fix bug 628668?
(In reply to comment #73)
> Alexander, does this latest patch fix bug 628668?

I don't know. I've never seen this bug.
(In reply to comment #72)

> >+  if (parentContent && parentContent->IsInDoc()) {
> >+    nsAccessible* container = parentContent ?
> >+      GetAccessibleOrContainer(parentContent) : this;
> 
> If we are inside the if branch, if because parentContent is not null, so I
> don't understand the "parentContent ? X : Y".

copy/paste issue I guess, I'll remove it.
Depends on: 630194
Comment on attachment 507818 [details] [diff] [review]
patch7v1: recreate subtree when root is recreated

r=me with the previous comment addressed
Attachment #507818 - Flags: review?(fherrera) → review+
Comment on attachment 507818 [details] [diff] [review]
patch7v1: recreate subtree when root is recreated

r=me with Fer's catch. What about a Marco f+?
Attachment #507818 - Flags: review?(bolterbugz) → review+
(In reply to comment #77)
> Comment on attachment 507818 [details] [diff] [review]
> patch7v1: recreate subtree when root is recreated
> 
> r=me with Fer's catch. What about a Marco f+?

he did this implicitly by testing try server build from bug 626660.
patch7v1: recreate subtree when root is recreated - landed on 2.0 beta 11 - http://hg.mozilla.org/mozilla-central/rev/ae887246ba34
Status: REOPENED → RESOLVED
Closed: 13 years ago13 years ago
Resolution: --- → FIXED
Blocks: 628603
Flags: in-testsuite+
Version: unspecified → Trunk
Depends on: 637097
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: