When editing HTML using Google Chrome (v.3.0.195.33) there is a ghosting effect. Image attachment included to better explain the issue. This was tested on your live demo.
Hi, found a solution working for me using css. Therefore you need to change the css (either in edit_area_full.js or if using the file edit_area.css).
Add following lines:
I see this on 4.0.249.78 also.
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
I have the same issue with the latest version of editarea (0.8.2) and with firefox 3.5.8. Deleting a line of a large file produces the effect.
I ran into the same problem. If you put a conditional for chrome and turn wordwrapping on!.
If word_wrap: true chrome goes weird and gives your that mirror text thing.
Hope this helps...bugged me for hours
Hi, found a solution working for me using css. Therefore you need to change the css (either in edit_area_full.js or if using the file edit_area.css).
Add following lines:
@media screen and (-webkit-min-device-pixel-ratio:0) {
#selection_field, #selection_field_text{
margin-top: -4px;
}
}