function Browser(name) {
  this.name = name.trim();
  this.depth = 0;
  this.errors = [];
}