class HpricotElementStub
  attr_reader :attributes
  
  def initialize(value, attributes={})
    @value, @attributes = value, attributes
  end
  
  def innerHTML
    @value
  end
end