Closed
Bug 1070923
Opened 11 years ago
Closed 11 years ago
Intermittent test_bug451286.xul | Highlighting in iframe correctly removed - expected PASS
Categories
(Toolkit :: Find Toolbar, defect)
Toolkit
Find Toolbar
Tracking
()
RESOLVED
FIXED
mozilla35
Tracking | Status | |
---|---|---|
firefox33 | --- | unaffected |
firefox34 | --- | unaffected |
firefox35 | --- | fixed |
firefox-esr31 | --- | unaffected |
People
(Reporter: cbook, Assigned: tomasz)
References
()
Details
(Keywords: intermittent-failure)
Attachments
(1 file, 1 obsolete file)
6.42 KB,
patch
|
tomasz
:
review+
|
Details | Diff | Splinter Review |
Rev4 MacOSX Snow Leopard 10.6 mozilla-inbound debug test mochitest-other on 2014-09-22 02:23:00 PDT for push 3161ad541392
slave: t-snow-r4-0106
https://tbpl.mozilla.org/php/getParsedLog.php?id=48571297&tree=Mozilla-Inbound
1727 INFO TEST-UNEXPECTED-FAIL | chrome://mochitests/content/chrome/toolkit/content/tests/chrome/test_bug451286.xul | Highlighting in iframe correctly removed - expected PASS
![]() |
||
Comment 1•11 years ago
|
||
Tomasz, I suspect this intermittent failure is fallout from bug 429732. Can you take a look?
![]() |
||
Updated•11 years ago
|
Flags: needinfo?(tkolodziejski)
Comment hidden (Legacy TBPL/Treeherder Robot) |
![]() |
||
Updated•11 years ago
|
OS: Mac OS X → All
Hardware: x86 → All
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Assignee | ||
Comment 6•11 years ago
|
||
This intermittent is timeout related. I can reliably reproduce it by changing: gFindBar.addEventListener('transitionend', part2); to setTimeout(part2, 0).
It was introduced by my changes as they made highlight async. My plan is to add method that will inform listeners that highlight has finished its job.
Flags: needinfo?(tkolodziejski)
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Assignee | ||
Updated•11 years ago
|
Assignee: nobody → tkolodziejski
Points: --- → 5
Assignee | ||
Comment 9•11 years ago
|
||
The patch should be fixing the issue. Why was it happening:
1. The test had a couple of functions
2. Those functions are taking screenshots
3. Each function was waiting for the findbar to get closed before the next function took the screenshot (the reason for that is that with findbar opened the size of the screenshots were different because findbar is taking up space. I added a comment about that to the test file so the next person to read it does not have to figure it out...)
4. Running the functions using this listener created race condition: it sometimes happens (as we see in this bug) that the transitionend event was fired before the highlight was finished and so the solution.
Also I am deeply surprised that the result of the code:
Task.spawn(function*() {console.log('a');}); console.log('b');
is showing a b and not the opposite.
This means that notifyHighlightFinished is firing asynchronously only because above it there is a yield promise (yield this._highlight(aHighlight, aWord, null)). It is very dangerous to create functions that are sometimes async and in this case it just happened to be ok.
I pushed it to try: https://tbpl.mozilla.org/?tree=Try&rev=68aa6c242df1. When it finishes I may try to retrigger this particular test (suite?) a couple of times.
And what about beenHere1? adw pointed out that it (probably) was already there: https://bugzilla.mozilla.org/buglist.cgi?query_format=advanced&longdesc=test_eventemitter_basic&longdesc_type=substring&list_id=11222025.
Attachment #8493421 -
Flags: review?(mdeboer)
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
![]() |
||
Comment 23•11 years ago
|
||
Comment on attachment 8493421 [details] [diff] [review]
intermittent-find.patch
Review of attachment 8493421 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks Tomasz! This does indeed seem to fix it :)
::: toolkit/content/tests/chrome/bug451286_window.xul
@@ +62,5 @@
> + // on the new snapshot.
> + function closeFindbarAndWait() {
> + return new Promise((resolve) => {
> + gFindBar.close();
> + gFindBar.addEventListener('transitionend', function cont (aEvent) {
nits: please use double quotes for strings. This applies to the entire changeset. Also, the additional space after `cont<space>(aEvent) {` is not necessary. I know you didn't write this code, but since you're touching it now you might as well correct it! :)
Attachment #8493421 -
Flags: review?(mdeboer) → review+
Assignee | ||
Comment 24•11 years ago
|
||
Attachment #8493421 -
Attachment is obsolete: true
Attachment #8496102 -
Flags: review+
Assignee | ||
Comment 25•11 years ago
|
||
I addressed your comments. Marking this as checkin-needed. Let's hope it fixes the issue.
Keywords: checkin-needed
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Assignee | ||
Updated•11 years ago
|
Status: NEW → ASSIGNED
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment 29•11 years ago
|
||
Keywords: checkin-needed
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
![]() |
Reporter | |
Comment 33•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla35
Updated•11 years ago
|
status-firefox35:
--- → fixed
Updated•11 years ago
|
status-firefox33:
--- → unaffected
status-firefox34:
--- → unaffected
status-firefox-esr31:
--- → unaffected
You need to log in
before you can comment on or make changes to this bug.
Description
•