mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
6cbc2bf9b3
Also, created tests for the propper "flattening" of whitespace-active-areas and created most of the code. However, it is to be noted in this release... TESTS ARE BROKEN. The flattening needs some love still. And the testing needs to get expanded further. I thought this would be easy, turns out its a bit of a bitch. git-svn-id: svn://hamptoncatlin.com/haml/trunk@16 7063305b-7217-0410-af8c-cdc13e5119b9
20 lines
486 B
HTML
20 lines
486 B
HTML
<div id='whitespace_test'>
|
|
<div class='text_area_test_area'>
|
|
<textarea>Oneline</textarea>
|
|
</div>
|
|
<div class='text_area_test_area'>
|
|
<textarea>Two
|
|
lines</textarea>
|
|
</div>
|
|
<div class='text_area_test_area'>
|
|
<textarea>Oneline</textarea>
|
|
</div>
|
|
<div class='text_area_test_area'>
|
|
<textarea>Two
lines</textarea>
|
|
</div>
|
|
<div id='flattened'>
|
|
<div class='text_area_test_area'>
|
|
<textarea>Two
lines</textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|