describe('with http: protocol on a non-standard port', function () {
    it('includes the port # in host', function () {
      var location = new Location('http://example.com:8080/the/path');
      expect(location.host).toEqual('example.com:8080');
    });