browse.prototype.previous = function() {
  if('previousElementSibling' in this.element) {
    return browse(this.element.previousElementSibling)
  }
  var previous = this.element.previousSibling