summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
index a91e1d6d45ce..18d2cf1c65fc 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
@@ -478,6 +478,11 @@ public class _XAccessibleComponent extends MultiMethodTest {
log.println( "potential race bounds " + bounds.Width + "x" + bounds.Height +
" vs. size " + size.Width + "x" + size.Height);
// Possibily we hit a race condition and it re-sized (?) ...
+ // One such race is described in
+ // <https://bugs.documentfoundation.org/show_bug.cgi?id=64587>
+ // "SvpSalInstance::CheckTimeout -> ScTable::SetRowHeightRange
+ // breaks JunitTest_sc_unoapi sc.ScAccessibleCell::com::sun::
+ // star::accessibility::XAccessibleComponent::getSize()".
bounds = oObj.getBounds();
size = oObj.getSize();
}