Closed Bug 1171589 Opened 8 years ago Closed 7 years ago

[e10s] test/test-content-events.test multiple tabs uses CPOWs

Categories

(Add-on SDK Graveyard :: General, defect)

defect
Not set
normal

Tracking

(e10s+)

RESOLVED WONTFIX
Tracking Status
e10s + ---

People

(Reporter: evold, Unassigned)

References

Details

(Whiteboard: [unsafe-cpow-usage])

when("pageshow", firstTab). // <=  CPOW USAGE
    then(close).
    then(use(window)).
    then(open("data:text/html,second-tab")).
    then(when("pageshow")). // <=  CPOW USAGE
    then(close).
    then(function() {
      assert.deepEqual(actual, [
        "document-element-inserted -> data:text/html,first-tab",
        "DOMContentLoaded -> data:text/html,first-tab",
        "load -> data:text/html,first-tab",
        "pageshow -> data:text/html,first-tab",
        "document-element-inserted -> data:text/html,second-tab",
        "DOMContentLoaded -> data:text/html,second-tab",
        "load -> data:text/html,second-tab",
        "pageshow -> data:text/html,second-tab"
      ], "all events dispatche as expeced")
    }, function(reason) {
      assert.fail(Error(reason));
    }).then(function() {
      loader.unload();
      off(events, "data", handler);
      done();
    });
};
Depends on: 1171595
tracking-e10s: m8+ → ---
Whiteboard: [unsafe-cpow-usage]
This is test only.
tracking-e10s: --- → +
can you check if this was fixed in recent fixes
Flags: needinfo?(lgreco)
Tests are now passing with e10s enabled. But still use CPOW.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
Flags: needinfo?(lgreco)
You need to log in before you can comment on or make changes to this bug.