Whatever the class is you are using inside the blockquote has an indent. Set that to a
text-indent: 0 and it will not be indented. I just tested this with Firefox and it worked fine.
Code:
<blockquote>
<p class="noindent">this is a test.<br/>This isn't a test.</p>
</blockquote>
.noindent {
text-indent: 0
}