Closed
Bug 581568
Opened 15 years ago
Closed 15 years ago
fix browser_bookmarks.js to work with e10s
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jmaher, Assigned: vingtetun)
Details
Attachments
(1 file, 2 obsolete files)
|
38.03 KB,
patch
|
mfinkle
:
review+
|
Details | Diff | Splinter Review |
a bit of bitrot has crept into this test file, here is a cleanup patch.
Attachment #459933 -
Flags: review?(21)
| Assignee | ||
Comment 1•15 years ago
|
||
Comment on attachment 459933 [details] [diff] [review]
e10s and bitrot cleanup for browser_bookmarks.js
Good to see the messageManager used for pageshow :)
Attachment #459933 -
Flags: review?(21) → review+
Comment 2•15 years ago
|
||
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Comment 3•15 years ago
|
||
note, these are broken again, due to bug 581252
Status: RESOLVED → UNCONFIRMED
Ever confirmed: false
Resolution: FIXED → ---
| Assignee | ||
Comment 4•15 years ago
|
||
My bad, I should have seen that during my review. To be forgiven here a patch to fix the breakage.
Attachment #460475 -
Flags: review?(mark.finkle)
Comment 5•15 years ago
|
||
Comment on attachment 460475 [details] [diff] [review]
Patch
>diff -r 21d4ced24389 chrome/tests/browser_bookmarks.js
> // Need to wait until the page is loaded
> messageManager.addMessageListener("pageshow",
>- function() {
>- if (gCurrentTest._currenttab.browser.currentURI.spec != "about:blank") {
>- messageManager.removeMessageListener("pageshow", arguments.callee);
>+ function(aMessage) {
>+ if (gCurrentTest._currentTab.browser.currentURI.spec != "about:blank") {
>+ messageManager.removeMessageListener(aMessage.name, arguments.callee);
> gCurrentTest.onPageReady();
Do we really need this change?
Looks good otherwise. We should file a followup bug to add testing the contextmenu too. I am OK with just getting these tests landed first.
Attachment #460475 -
Flags: review?(mark.finkle) → review+
| Assignee | ||
Comment 6•15 years ago
|
||
This patch remove toggleManage everywhere (in such a way that browser_bookmarks.js and browser_bookmarks_star.js pass with success) and remove the unused browser_bookmarks_folder.js
Attachment #459933 -
Attachment is obsolete: true
Attachment #460475 -
Attachment is obsolete: true
Attachment #460883 -
Flags: review?(mark.finkle)
Updated•15 years ago
|
Attachment #460883 -
Flags: review?(mark.finkle) → review+
Comment 7•15 years ago
|
||
Status: UNCONFIRMED → RESOLVED
Closed: 15 years ago → 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•