Note IE bug in a FIXME
authorAryeh Gregor <AryehGregor+gitcommit@gmail.com>
Mon, 08 Aug 2011 11:39:48 -0600
changeset 507 1d982f193ec3
parent 506 fd429610f903
child 508 ae81251fdcbf
Note IE bug in a FIXME

Reported-By: Tim Down
implementation.js
--- a/implementation.js	Fri Aug 05 15:45:51 2011 -0600
+++ b/implementation.js	Mon Aug 08 11:39:48 2011 -0600
@@ -826,6 +826,9 @@
 // "An extraneous line break is a br that has no visual effect, in that
 // removing it from the DOM would not change layout, except that a br that is
 // the sole child of an li is not extraneous."
+//
+// FIXME: This doesn't work in IE, since IE ignores display: none in
+// contenteditable.
 function isExtraneousLineBreak(br) {
 	if (!isHtmlElement(br, "br")) {
 		return false;