describe('with http: protocol on the standard port', function () {
    it('leaves the port # out of host', function () {
      var location = new Location('http://example.com:80/the/path');
      expect(location.host).toEqual('example.com');
    });