JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
don't leave empty style attributes
[peach-html5-editor.git] / editor.js
1 // Copyright 2015 Jason Woofenden
2 // This file implements an WYSIWYG editor in the browser (no contenteditable)
3 //
4 // This program is free software: you can redistribute it and/or modify it under
5 // the terms of the GNU Affero General Public License as published by the Free
6 // Software Foundation, either version 3 of the License, or (at your option) any
7 // later version.
8 //
9 // This program is distributed in the hope that it will be useful, but WITHOUT
10 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 // FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
12 // details.
13 //
14 // You should have received a copy of the GNU Affero General Public License
15 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 (function() {
18 var KEY_BACKSPACE, KEY_DELETE, KEY_DOWN, KEY_END, KEY_ENTER, KEY_ESCAPE, KEY_HOME, KEY_INSERT, KEY_LEFT, KEY_PAGE_DOWN, KEY_PAGE_UP, KEY_RIGHT, KEY_TAB, KEY_UP, breathing_room, control_key_codes, enc_attr_regex, enc_text_regex, event_return, find_prev_cursor_position, find_up_cursor_position, get_el_bounds, ignore_key_codes, js_attr_regex, multi_sp_regex, no_text_elements, overlay_padding, text_range_bounds, valid_attr_regex, void_elements, ws_props, xy_to_cursor, slice = [].slice
19
20 // SETTINGS
21 overlay_padding = 10
22 breathing_room = 30 // minimum pixels above/below cursor (scrolling)
23
24 function timeout (ms, cb) {
25         return setTimeout(cb, ms)
26 }
27
28 function next_frame (cb) {
29         if (window.requestAnimationFrame != null) {
30                 window.requestAnimationFrame(cb)
31         } else {
32                 timeout(16, cb)
33         }
34 }
35
36 function this_url_sans_path () {
37         var clip, ret
38         ret = "" + window.location.href
39         clip = ret.lastIndexOf('#')
40         if (clip > -1) {
41                 ret = ret.substr(0, clip)
42         }
43         clip = ret.lastIndexOf('?')
44         if (clip > -1) {
45                 ret = ret.substr(0, clip)
46         }
47         clip = ret.lastIndexOf('/')
48         if (clip > -1) {
49                 ret = ret.substr(0, clip + 1)
50         }
51         return ret
52 }
53
54 // table too look up the properties of various values for css's white-space
55 ws_props = {
56         normal: {
57                 space: false,           // spaces are not preserved/rendered
58                 newline: false,         // newlines are not preserved/rendered
59                 wrap: true,             // text is word-wrapped
60                 to_preserve: 'pre-wrap' // to preservespaces, change white-space to this
61         },
62         nowrap: {
63                 space: false,
64                 newline: false,
65                 wrap: false,
66                 to_preserve: 'pre'
67         },
68         'pre-line': {
69                 space: false,
70                 newline: true,
71                 wrap: true,
72                 to_preserve: 'pre-wrap'
73         },
74         pre: {
75                 space: true,
76                 newline: true,
77                 wrap: false,
78                 to_collapse: 'nowrap'
79         },
80         'pre-wrap': {
81                 space: true,
82                 newline: true,
83                 wrap: true,
84                 to_collapse: 'normal'
85         }
86 }
87
88 // xml 1.0 spec, chromium and firefox accept these, plus lots of unicode chars
89 valid_attr_regex = new RegExp('^[a-zA-Z_:][-a-zA-Z0-9_:.]*$')
90 // html5 spec is much more lax, but chromium won't let me make at attribute with the name "4"
91 js_attr_regex = new RegExp('^[oO][nN].')
92 // html5 spec says that only these characters are collapsable
93 multi_sp_regex = new RegExp('[\u0020\u0009\u000a\u000c\u000d][\u0020\u0009\u000a\u000c\u000d]')
94
95 function str_has_ws_run (str) {
96         return multi_sp_regex.test(str)
97 }
98
99 // text nodes don't have getBoundingClientRect(), so use selection api to find
100 // it.
101 get_el_bounds = window.bounds = function(el) {
102         var doc, range, rect, win, x_fix, y_fix
103         if (el.getBoundingClientRect != null) {
104                 rect = el.getBoundingClientRect()
105         } else {
106                 // text nodes don't have getBoundingClientRect(), so use range api
107                 range = el.ownerDocument.createRange()
108                 range.selectNodeContents(el)
109                 rect = range.getBoundingClientRect()
110         }
111         doc = el.ownerDocument.documentElement
112         win = el.ownerDocument.defaultView
113         y_fix = win.pageYOffset - doc.clientTop
114         x_fix = win.pageXOffset - doc.clientLeft
115         return {
116                 x: rect.left + x_fix,
117                 y: rect.top + y_fix,
118                 w: rect.width != null ? rect.width : rect.right - rect.left,
119                 h: rect.height != null ? rect.height : rect.top - rect.bottom
120         }
121 }
122
123 function is_display_block (el) {
124         if (el.currentStyle != null) {
125                 return el.currentStyle.display === 'block'
126         } else {
127                 return window.getComputedStyle(el, null).getPropertyValue('display') === 'block'
128         }
129 }
130
131 // Pass return value from dom event handlers to this.
132 // If they return false, this will addinionally stop propagation and default.
133 function event_return (e, bool) {
134         if (bool === false) {
135                 if (e.stopPropagation != null) {
136                         e.stopPropagation()
137                 }
138                 if (e.preventDefault != null) {
139                         e.preventDefault()
140                 }
141         }
142         return bool
143 }
144
145 // Warning: currently assumes you're asking about a single character
146 // Note: chromium returns multiple bounding rects for a space at a line-break
147 // Note: chromium's getBoundingClientRect() is broken (when zero-area client rects)
148 // Note: sometimes returns null (eg for whitespace that is not visible)
149 text_range_bounds = function(el, start, end) {
150         var doc, range, rect, rects, win, x_fix, y_fix
151         range = document.createRange()
152         range.setStart(el, start)
153         range.setEnd(el, end)
154         rects = range.getClientRects()
155         if (rects.length > 0) {
156                 if (rects.length > 1) {
157                         if (rects[1].width > rects[0].width) {
158                                 rect = rects[1]
159                         } else {
160                                 rect = rects[0]
161                         }
162                 } else {
163                         rect = rects[0]
164                 }
165         } else {
166                 return null
167         }
168         doc = el.ownerDocument.documentElement
169         win = el.ownerDocument.defaultView
170         y_fix = win.pageYOffset - doc.clientTop
171         x_fix = win.pageXOffset - doc.clientLeft
172         return {
173                 x: rect.left + x_fix,
174                 y: rect.top + y_fix,
175                 w: rect.width != null ? rect.width : rect.right - rect.left,
176                 h: rect.height != null ? rect.height : rect.top - rect.bottom,
177                 rects: rects,
178                 bounding: range.getBoundingClientRect()
179         }
180 }
181
182 function CursorPosition(args) {
183         this.n = args.n != null ? args.n : null
184         this.i = args.i != null ? args.i : null
185         if (args.x != null) {
186                 this.x = args.x
187                 this.y = args.y
188                 this.h = args.h
189         } else {
190                 this.set_xyh()
191         }
192 }
193
194 CursorPosition.prototype.set_xyh = function() {
195         var range, ret
196         range = document.createRange()
197         if (this.n.text.length === 0) {
198                 ret = text_range_bounds(this.n.el, 0, 0)
199         } else if (this.i === this.n.text.length) {
200                 ret = text_range_bounds(this.n.el, this.i - 1, this.i)
201                 if (ret != null) {
202                         ret.x += ret.w
203                 }
204         } else {
205                 ret = text_range_bounds(this.n.el, this.i, this.i + 1)
206         }
207         if (ret != null) {
208                 this.x = ret.x
209                 this.y = ret.y
210                 this.h = ret.h
211         } else {
212                 this.x = null
213                 this.y = null
214                 this.h = null
215         }
216         return ret
217 }
218
219 function new_cursor_position (args) {
220         var ret
221         ret = new CursorPosition(args)
222         if (ret.x != null) {
223                 return ret
224         }
225         return null
226 }
227
228 // html encoding for attributes
229 // encoding nbsp is not required, but hopefully it is useful
230 enc_attr_regex = new RegExp('(&)|(")|(\u00A0)', 'g')
231 function enc_attr (txt) {
232         return txt.replace(enc_attr_regex, function(match, amp, quote) {
233                 if (amp) {
234                         return '&amp;'
235                 }
236                 if (quote) {
237                         return '&quot;'
238                 }
239                 return '&nbsp;'
240         })
241 }
242 // html encoding for text (does nothing to stop whitespace collapse)
243 // encoding nbsp is not required, but hopefully it is useful
244 enc_text_regex = new RegExp('(&)|(<)|(\u00A0)', 'g')
245 function enc_text (txt) {
246         return txt.replace(enc_text_regex, function(match, amp, lt) {
247                 if (amp) {
248                         return '&amp;'
249                 }
250                 if (lt) {
251                         return '&lt;'
252                 }
253                 return '&nbsp;'
254         })
255 }
256
257 // no closing tag, cannot have children
258 void_elements = {
259         area: 1,
260         base: 1,
261         br: 1,
262         col: 1,
263         embed: 1,
264         hr: 1,
265         img: 1,
266         input: 1,
267         keygen: 1,
268         link: 1,
269         meta: 1,
270         param: 1,
271         source: 1,
272         track: 1,
273         wbr: 1
274 }
275
276 // contents are not html encoded
277 plaintext_elements = {
278         style: 1,
279         script: 1,
280         xmp: 1,
281         iframe: 1,
282         noembed: 1,
283         noframes: 1,
284         plaintext: 1,
285         noscript: 1
286 }
287
288 // parser deletes a starting newline inside:
289 newline_eating_elements = {
290         pre: 1,
291         textarea: 1,
292         listing: 1
293 }
294
295 // this does not pretty-print
296 function nodes_to_html (tree) {
297         var attr_keys, i, k, n, ret
298         ret = ''
299         for (i = 0; i < tree.length; ++i) {
300                 n = tree[i]
301                 switch (n.type) {
302                         case 'tag':
303                                 ret += '<' + n.name
304                                 attr_keys = []
305                                 for (k in n.attrs) {
306                                         ret += " " + k
307                                         if (n.attrs[k].length > 0) {
308                                                 ret += "=\"" + (enc_attr(n.attrs[k])) + "\""
309                                         }
310                                 }
311                                 ret += '>'
312                                 if (void_elements[n.name] == null) {
313                                         if (n.children.length) {
314                                                 ret += nodes_to_html(n.children)
315                                         }
316                                         ret += "</" + n.name + ">"
317                                 }
318                                 break
319                         case 'text':
320                                 if (n.parent != null ? plaintext_elements[n.parent.name] : false) {
321                                         ret += n.text
322                                 } else if (n.parent != null ? newline_eating_elements[n.parent.name] && n.text.charAt(0) === "\n" : false) {
323                                         ret += enc_text("\n" + n.text)
324                                 } else {
325                                         ret += enc_text(n.text)
326                                 }
327                                 break
328                         case 'comment':
329                                 ret += "<!--" + n.text + "-->" // TODO encode?
330                                 break
331                         case 'doctype':
332                                 ret += "<!DOCTYPE " + n.name
333                                 if ((n.public_identifier != null) && n.public_identifier.length > 0) {
334                                         ret += " \"" + n.public_identifier + "\""
335                                 }
336                                 if ((n.system_identifier != null) && n.system_identifier.length > 0) {
337                                         ret += " \"" + n.system_identifier + "\""
338                                 }
339                                 ret += ">"
340                 }
341         }
342         return ret
343 }
344
345 // TODO make these always pretty-print (on the inside) like blocks
346 // TODO careful though: whitespace might get pushed to parent, which might be rendered
347 no_text_elements = { // these elements never contain text
348         select: true,
349         table: true,
350         tr: true,
351         thead: true,
352         tbody: true,
353         ul: true,
354         ol: true
355 }
356
357 function domify (doc, hash) {
358         var attrs, el, i, k, tag, v
359         for (tag in hash) {
360                 attrs = hash[tag]
361                 if (tag === 'text') {
362                         return document.createTextNode(attrs)
363                 }
364                 el = document.createElement(tag)
365                 for (k in attrs) {
366                         v = attrs[k]
367                         if (k === 'children') {
368                                 for (i = 0; i < v.length; i++) {
369                                         el.appendChild(v[i])
370                                 }
371                         } else {
372                                 el.setAttribute(k, v)
373                         }
374                 }
375         }
376         return el
377 }
378
379 ignore_key_codes = {
380         '18': true,  // alt
381         '20': true,  // capslock
382         '17': true,  // ctrl
383         '144': true, // numlock
384         '16': true,  // shift
385         '91': true   // windows "start" key
386 }
387 // key codes: (valid on keydown, not keypress)
388 KEY_LEFT = 37
389 KEY_UP = 38
390 KEY_RIGHT = 39
391 KEY_DOWN = 40
392 KEY_BACKSPACE = 8 // <--
393 KEY_DELETE = 46 // -->
394 KEY_END = 35
395 KEY_ENTER = 13
396 KEY_ESCAPE = 27
397 KEY_HOME = 36
398 KEY_INSERT = 45
399 KEY_PAGE_UP = 33
400 KEY_PAGE_DOWN = 34
401 KEY_TAB = 9
402 control_key_codes = { // we react to these, but they aren't typing
403         '37': KEY_LEFT,
404         '38': KEY_UP,
405         '39': KEY_RIGHT,
406         '40': KEY_DOWN,
407         '35': KEY_END,
408          '8': KEY_BACKSPACE,
409         '46': KEY_DELETE,
410         '13': KEY_ENTER,
411         '27': KEY_ESCAPE,
412         '36': KEY_HOME,
413         '45': KEY_INSERT,
414         '33': KEY_PAGE_UP,
415         '34': KEY_PAGE_DOWN,
416          '9': KEY_TAB
417 }
418
419 function instantiate_tree (tree, parent) {
420         var c, i, k, remove, results, v
421         remove = []
422         for (i = 0; i < tree.length; ++i) {
423                 c = tree[i]
424                 switch (c.type) {
425                         case 'text':
426                                 c.el = parent.ownerDocument.createTextNode(c.text)
427                                 parent.appendChild(c.el)
428                         break
429                         case 'tag':
430                                 if (c.name === 'script' || c.name === 'object' || c.name === 'iframe' || c.name === 'link') {
431                                         // TODO put placeholders instead
432                                         remove.unshift(i)
433                                         continue
434                                 }
435                                 // TODO create in correct namespace
436                                 c.el = parent.ownerDocument.createElement(c.name)
437                                 ref1 = c.attrs
438                                 for (k in ref1) {
439                                         v = ref1[k]
440                                         // FIXME if attr_whitelist[k]?
441                                         if (valid_attr_regex.test(k)) {
442                                                 if (!js_attr_regex.test(k)) {
443                                                         c.el.setAttribute(k, v)
444                                                 }
445                                         }
446                                 }
447                                 parent.appendChild(c.el)
448                                 if (c.children.length) {
449                                         instantiate_tree(c.children, c.el)
450                                 }
451                 }
452         }
453         results = []
454         for (i = 0; i < remove.length; i++) {
455                 // FIXME this deletes the wrong node when siblings are removed
456                 index = remove[i]
457                 results.push(tree.splice(index, 1))
458         }
459         return results
460 }
461
462 function traverse_tree (tree, cb) {
463         var c, done, i
464         done = false
465         for (i = 0; i < tree.length; i++) {
466                 c = tree[i]
467                 done = cb(c)
468                 if (done) {
469                         return done
470                 }
471                 if (c.children.length) {
472                         done = traverse_tree(c.children, cb)
473                         if (done) {
474                                 return done
475                         }
476                 }
477         }
478         return done
479 }
480
481 function first_cursor_position (tree) {
482         var found
483         found = null
484         traverse_tree(tree, function(node, state) {
485                 var cursor
486                 if (node.type === 'text') {
487                         cursor = new_cursor_position({n: node, i: 0})
488                         if (cursor != null) {
489                                 found = cursor
490                                 return true // done traversing
491                         }
492                 }
493                 return false // not done traversing
494         })
495         return found // maybe null
496 }
497
498 // this will fail when text has non-locatable cursor positions (eg collapsed whitespace)
499 function find_next_cursor_position (tree, cursor) {
500         var found, new_cursor, state_before
501         if (cursor.n.type === 'text' && cursor.n.text.length > cursor.i) {
502                 new_cursor = new_cursor_position({n: cursor.n, i: cursor.i + 1})
503                 if (new_cursor != null) {
504                         return new_cursor
505                 }
506         }
507         state_before = true
508         found = null
509         traverse_tree(tree, function(node, state) {
510                 if (node.type === 'text' && state_before === false) {
511                         new_cursor = new_cursor_position({n: node, i: 0})
512                         if (new_cursor != null) {
513                                 found = new_cursor
514                                 return true // done traversing
515                         }
516                 }
517                 if (node === cursor.n) {
518                         state_before = false
519                 }
520                 return false // not done traversing
521         })
522         if (found != null) {
523                 return found
524         }
525         return null
526 }
527
528 function last_cursor_position (tree) {
529         var found
530         found = null
531         traverse_tree(tree, function(node) {
532                 var cursor
533                 if (node.type === 'text') {
534                         cursor = new_cursor_position({n: node, i: node.text.length})
535                         if (cursor != null) {
536                                 found = cursor
537                         }
538                 }
539                 return false // not done traversing
540         })
541         return found // maybe null
542 }
543
544 // this will fail when text has non-locatable cursor positions (eg collapsed whitespace)
545 function find_prev_cursor_position (tree, cursor) {
546         var found, found_prev, new_cursor
547         if (cursor.n.type === 'text' && cursor.i > 0) {
548                 new_cursor = new_cursor_position({n: cursor.n, i: cursor.i - 1})
549                 if (new_cursor != null) {
550                         return new_cursor
551                 }
552         }
553         found_prev = null
554         found = null
555         traverse_tree(tree, function(node) {
556                 if (node === cursor.n) {
557                         found = found_prev // maybe null
558                         return true // done traversing
559                 }
560                 if (node.type === 'text') {
561                         new_cursor = new_cursor_position({n: node, i: node.text.length})
562                         if (new_cursor != null) {
563                                 found_prev = new_cursor
564                         }
565                 }
566                 return false // not done traversing
567         })
568         return found // maybe null
569 }
570
571 function find_up_cursor_position (tree, cursor, ideal_x) {
572         var new_cursor, prev_cursor, target_y
573         new_cursor = cursor
574         // go prev until we're higher on y axis
575         while (new_cursor.y >= cursor.y) {
576                 new_cursor = find_prev_cursor_position(tree, new_cursor)
577                 if (new_cursor == null) {
578                         return null
579                 }
580         }
581         // done early if we're already left of old cursor position
582         if (new_cursor.x <= ideal_x) {
583                 return new_cursor
584         }
585         target_y = new_cursor.y
586         // search leftward, until we find the closest position
587         // new_cursor is the prev-most position we've checked
588         // prev_cursor is the older value, so it's not as prev as new_cursor
589         while (new_cursor.x > ideal_x && new_cursor.y === target_y) {
590                 prev_cursor = new_cursor
591                 new_cursor = find_prev_cursor_position(tree, new_cursor)
592                 if (new_cursor == null) {
593                         break
594                 }
595         }
596         // move cursor to prev_cursor or new_cursor
597         if (new_cursor != null) {
598                 if (new_cursor.y === target_y) {
599                         // both valid, and on the same line, use closest
600                         if ((ideal_x - new_cursor.x) < (prev_cursor.x - ideal_x)) {
601                                 return new_cursor
602                         } else {
603                                 return prev_cursor
604                         }
605                 } else {
606                         // new_cursor on wrong line, use prev_cursor
607                         return prev_cursor
608                 }
609         } else {
610                 // can't go any further prev, use prev_cursor
611                 return prev_cursor
612         }
613 }
614
615 function find_down_cursor_position (tree, cursor, ideal_x) {
616         var new_cursor, prev_cursor, target_y
617         new_cursor = cursor
618         // go next until we move on the y axis
619         while (new_cursor.y <= cursor.y) {
620                 new_cursor = find_next_cursor_position(tree, new_cursor)
621                 if (new_cursor == null) {
622                         return null
623                 }
624         }
625         // done early if we're already right of old cursor position
626         if (new_cursor.x >= ideal_x) {
627                 // this would be strange, but could happen due to runaround
628                 return new_cursor
629         }
630         target_y = new_cursor.y
631         // search rightward, until we find the closest position
632         // new_cursor is the next-most position we've checked
633         // prev_cursor is the older value, so it's not as next as new_cursor
634         while (new_cursor.x < ideal_x && new_cursor.y === target_y) {
635                 prev_cursor = new_cursor
636                 new_cursor = find_next_cursor_position(tree, new_cursor)
637                 if (new_cursor == null) {
638                         break
639                 }
640         }
641         if (new_cursor != null) {
642                 if (new_cursor.y === target_y) {
643                         // both valid, and on the same line, use closest
644                         if ((new_cursor.x - ideal_x) < (ideal_x - prev_cursor.x)) {
645                                 return new_cursor
646                         } else {
647                                 return prev_cursor
648                         }
649                 } else {
650                         // new_cursor on wrong line, use prev_cursor
651                         return prev_cursor
652                 }
653         } else {
654                 // can't go any further prev, use prev_cursor
655                 return prev_cursor
656         }
657 }
658
659 function xy_to_cursor (tree, xy) {
660         var after, before, bounds, cur, guess_i, i, n, ret
661         for (i = 0; i < tree.length; i++) {
662                 n = tree[i]
663                 if (n.type === 'tag' || n.type === 'text') {
664                         bounds = get_el_bounds(n.el)
665                         if (xy.x < bounds.x) {
666                                 continue
667                         }
668                         if (xy.x > bounds.x + bounds.w) {
669                                 continue
670                         }
671                         if (xy.y < bounds.y) {
672                                 continue
673                         }
674                         if (xy.y > bounds.y + bounds.h) {
675                                 continue
676                         }
677                         if (n.children.length) {
678                                 ret = xy_to_cursor(n.children, xy)
679                                 if (ret != null) {
680                                         return ret
681                                 }
682                         }
683                         if (n.type === 'text') {
684                                 // click is within bounding box that contains all text.
685                                 if (n.text.length === 0) {
686                                         ret = new_cursor_position({n: n, i: 0})
687                                         if (ret != null) {
688                                                 return ret
689                                         }
690                                         continue
691                                 }
692                                 before = new_cursor_position({n: n, i: 0})
693                                 if (before == null) {
694                                         continue
695                                 }
696                                 after = new_cursor_position({n: n, i: n.text.length})
697                                 if (after == null) {
698                                         continue
699                                 }
700                                 if (xy.y < before.y + before.h && xy.x < before.x) {
701                                         // console.log 'before first char on first line'
702                                         continue
703                                 }
704                                 if (xy.y > after.y && xy.x > after.x) {
705                                         // console.log 'after last char on last line'
706                                         continue
707                                 }
708                                 if (xy.y < before.y) {
709                                         console.log("Warning: click in text bounding box but above first line")
710                                         continue // above first line (runaround?)
711                                 }
712                                 if (xy.y > after.y + after.h) {
713                                         console.log("Warning: click in text bounding box but below last line", xy.y, after.y, after.h)
714                                         continue // below last line (shouldn't happen?)
715                                 }
716                                 while (after.i - before.i > 1) {
717                                         guess_i = Math.round((before.i + after.i) / 2)
718                                         cur = new_cursor_position({n: n, i: guess_i})
719                                         if (cur == null) {
720                                                 console.log("error: failed to find cursor pixel location for", n, guess_i)
721                                                 before = null
722                                                 break
723                                         }
724                                         if (xy.y < cur.y || (xy.y <= cur.y + cur.h && xy.x < cur.x)) {
725                                                 after = cur
726                                         } else {
727                                                 before = cur
728                                         }
729                                 }
730                                 if (before == null) { // signals failure to find a cursor position
731                                         continue
732                                 }
733                                 // which one is closest?
734                                 if (Math.abs(before.x - xy.x) < Math.abs(after.x - xy.x)) {
735                                         return before
736                                 } else {
737                                         return after
738                                 }
739                         }
740                 }
741         }
742         return null
743 }
744
745 // browsers collapse these (html5 spec calls these "space characters")
746 function is_space_code (char_code) {
747         switch (char_code) {
748                 case 9:
749                 case 10:
750                 case 12:
751                 case 13:
752                 case 32:
753                         return true
754         }
755         return false
756 }
757 function is_space (chr) {
758         return is_space_code(chr.charCodeAt(0))
759 }
760
761 function tree_remove_empty_text_nodes (tree) {
762         var c, empties, i, j, n
763         empties = []
764         traverse_tree(tree, function(n) {
765                 if (n.type === 'text') {
766                         if (n.text.length === 0) {
767                                 empties.unshift(n)
768                         }
769                 }
770                 return false // not done traversing
771         })
772         for (i = 0; i < empties.length; i++) {
773                 n = empties[i]
774                 // don't completely empty the tree
775                 if (tree.length === 1) {
776                         if (tree[0].type === 'text') {
777                                 console.log("oop, leaving a blank node because it's the only thing")
778                                 return
779                         }
780                 }
781                 n.el.parentNode.removeChild(n.el)
782                 ref = n.parent.children
783                 for (j = 0; j < ref.length; ++j) {
784                         c = ref[j]
785                         if (c === n) {
786                                 n.parent.children.splice(j, 1)
787                                 break
788                         }
789                 }
790         }
791 }
792
793 function PeachHTML5Editor (in_el, options) {
794         // Options: (all optional)
795         //   editor_id: "id" attribute for outer-most element created by/for editor
796         //   css_file: filename of a css file to style editable content
797         //   on_init: callback for when the editable content is in place
798         var css, opt_fragment, outer_bounds, outer_iframe_style, outer_wrap
799         this.options = options != null ? options : {}
800         this.pretty_print = options.pretty_print != null ? options.pretty_print : true
801         this.in_el = in_el
802         this.tree = null // array of Nodes, all editable content
803         this.tree_parent = null // this.tree is this.children. .el might === this.idoc.body
804         this.matting = []
805         this.init_1_called = false // when iframes have loaded
806         this.outer_iframe // iframe to hold editor
807         this.outer_idoc // "document" object for this.outer_iframe
808         this.wrap2 = null // scrollbar is on this
809         this.wrap2_offset = null
810         this.wrap2_height = null // including padding
811         this.iframe = null // iframe to hold editable content
812         this.idoc = null // "document" object for this.iframe
813         this.cursor = null
814         this.cursor_el = null
815         this.cursor_visible = false
816         this.cursor_ideal_x = null
817         this.poll_for_blur_timeout = null
818         opt_fragment = this.options.fragment != null ? this.options.fragment : true
819         this.parser_opts = {}
820         if (opt_fragment) {
821                 this.parser_opts.fragment = 'body'
822         }
823         this.outer_iframe = domify(document, {iframe: {}})
824         outer_iframe_style = 'border: none !important; margin: 0 !important; padding: 0 !important; height: 100% !important; width: 100% !important;'
825         if (this.options.editor_id != null) {
826                 this.outer_iframe.setAttribute('id', this.options.editor_id)
827         }
828         this.outer_iframe.onload = (function(_this) {
829                 return function() {
830                         var icss
831                         _this.outer_idoc = _this.outer_iframe.contentDocument
832                         icss = domify(_this.outer_idoc, { style: { children: [
833                                 domify(_this.outer_idoc, {text: css})
834                         ]}})
835                         _this.outer_idoc.head.appendChild(icss)
836                         _this.iframe = domify(_this.outer_idoc, {iframe: {sandbox: 'allow-same-origin allow-scripts'}})
837                         _this.iframe.onload = function() {
838                                 return _this.init_1()
839                         }
840                         timeout(200, function() { // firefox never fires this onload
841                                 if (!_this.init_1_called) {
842                                         return _this.init_1()
843                                 }
844                         })
845                         _this.outer_idoc.body.appendChild(
846                                 domify(_this.outer_idoc, {div: {id: 'wrap1', children: [
847                                         domify(_this.outer_idoc, {div: {
848                                                 style: "position: absolute; top: 0; left: 1px; font-size: 10px",
849                                                 children: [domify(_this.outer_idoc, {text: "Peach HTML5 Editor"})]
850                                         }}),
851                                         _this.wrap2 = domify(_this.outer_idoc, {div: {id: 'wrap2', children: [
852                                                 domify(_this.outer_idoc, {div: {id: 'wrap3', children: [
853                                                         _this.iframe,
854                                                         _this.overlay = domify(_this.outer_idoc, { div: { id: 'overlay' }})
855                                                 ]}})
856                                         ]}})
857                                 ]}})
858                         )
859                 }
860         })(this)
861         outer_wrap = domify(document, {div: {"class": 'peach_html5_editor' }})
862         this.in_el.parentNode.appendChild(outer_wrap)
863         outer_bounds = get_el_bounds(outer_wrap)
864         if (outer_bounds.w < 300) {
865                 outer_bounds.w = 300
866         }
867         if (outer_bounds.h < 300) {
868                 outer_bounds.h = 300
869         }
870         outer_iframe_style += "width: " + outer_bounds.w + "px; height: " + outer_bounds.h + "px;"
871         this.outer_iframe.setAttribute('style', outer_iframe_style)
872         css = this.generate_outer_css({w: outer_bounds.w, h: outer_bounds.h})
873         outer_wrap.appendChild(this.outer_iframe)
874 }
875 PeachHTML5Editor.prototype.init_1 = function() { // this.iframe has loaded (but not it's css)
876         var istyle
877         this.idoc = this.iframe.contentDocument
878         this.init_1_called = true
879         // chromium doesn't resolve relative urls as though they were at the same domain
880         // so add a <base> tag
881         this.idoc.head.appendChild(domify(this.idoc, {base: {href: this_url_sans_path()}}))
882         // don't let @iframe have scrollbars
883         this.idoc.head.appendChild(domify(this.idoc, {style: {children: [
884                 domify(this.idoc, {text: "body { overflow: hidden; }"})
885         ]}}))
886         if (this.options.css_file) {
887                 istyle = domify(this.idoc, {link: {rel: 'stylesheet', href: this.options.css_file}})
888                 istyle.onload = (function(_this) {
889                         return function() {
890                                 return _this.init_2()
891                         }
892                 })(this)
893                 this.idoc.head.appendChild(istyle)
894         } else {
895                 this.init_2()
896         }
897 }
898 PeachHTML5Editor.prototype.init_2 = function() { // this.iframe and it's css file(s) are ready
899         this.overlay.onclick = (function(_this) {
900                 return function(e) {
901                         _this.have_focus()
902                         return event_return(e, _this.onclick(e))
903                 }
904         })(this)
905         this.overlay.ondoubleclick = (function(_this) {
906                 return function(e) {
907                         _this.have_focus()
908                         return event_return(e, _this.ondoubleclick(e))
909                 }
910         })(this)
911         this.outer_idoc.body.onkeyup = (function(_this) {
912                 return function(e) {
913                         _this.have_focus()
914                         return event_return(e, _this.onkeyup(e))
915                 }
916         })(this)
917         this.outer_idoc.body.onkeydown = (function(_this) {
918                 return function(e) {
919                         _this.have_focus()
920                         return event_return(e, _this.onkeydown(e))
921                 }
922         })(this)
923         this.outer_idoc.body.onkeypress = (function(_this) {
924                 return function(e) {
925                         _this.have_focus()
926                         return event_return(e, _this.onkeypress(e))
927                 }
928         })(this)
929         this.load_html(this.in_el.value)
930         if (this.options.on_init != null) {
931                 return this.options.on_init()
932         }
933 }
934 PeachHTML5Editor.prototype.generate_outer_css = function(args) {
935         var frame_width, h, inner_padding, occupy, ret, w
936         w = args.w != null ? args.w : 300
937         h = args.h != null ? args.h : 300
938         inner_padding = args.inner_padding != null ? args.inner_padding : overlay_padding
939         frame_width = args.frame_width != null ? args.frame_width : inner_padding
940         occupy = function(left, top, right, bottom) {
941                 if (top == null) {
942                         top = left
943                 }
944                 if (right == null) {
945                         right = left
946                 }
947                 if (bottom == null) {
948                         bottom = top
949                 }
950                 w -= left + right
951                 h -= top + bottom
952                 return Math.max(left, top, right, bottom)
953         }
954         ret = ''
955         ret += 'body {'
956         ret +=     'margin: 0;'
957         ret +=     'padding: 0;'
958         ret +=     'color: black;'
959         ret +=     'background: white;'
960         ret += '}'
961         ret += '#wrap1 {'
962         ret +=     "border: " + (occupy(1)) + "px solid black;"
963         ret +=     "padding: " + (occupy(frame_width)) + "px;"
964         ret += '}'
965         ret += '#wrap2 {'
966         ret +=     "border: " + (occupy(1)) + "px solid black;"
967         this.wrap2_height = h // including padding because padding scrolls
968         ret +=     "padding: " + (occupy(inner_padding)) + "px;"
969         ret +=     "padding-right: " + (inner_padding + occupy(0, 0, 15, 0)) + "px;"
970         ret +=     "width: " + w + "px;"
971         ret +=     "height: " + h + "px;"
972         ret += 'overflow-x: hidden;'
973         ret += 'overflow-y: scroll;'
974         ret += '}'
975         ret += '#wrap3 {'
976         ret += 'position: relative;'
977         ret +=     "width: " + w + "px;"
978         ret +=     "min-height: " + h + "px;"
979         ret += '}'
980         ret += 'iframe {'
981         ret += 'box-sizing: border-box;'
982         ret += 'margin: 0;'
983         ret += 'border: none;'
984         ret += 'padding: 0;'
985         ret +=     "width: " + w + "px;"
986         //ret +=     "height: " + h + "px;" // height auto-set when content set/changed
987         ret +=     '-ms-user-select: none;'
988         ret +=     '-webkit-user-select: none;'
989         ret +=     '-moz-user-select: none;'
990         ret +=     'user-select: none;'
991         ret += '}'
992         ret += '#overlay {'
993         ret +=     'position: absolute;'
994         ret +=     "left: -" + inner_padding + "px;"
995         ret +=     "top: -" + inner_padding + "px;"
996         ret +=     "right: -" + inner_padding + "px;"
997         ret +=     "bottom: -" + inner_padding + "px;"
998         ret +=     'overflow: hidden;'
999         ret += '}'
1000         ret += '.lightbox {'
1001         ret +=     'position: absolute;'
1002         ret +=     'background: rgba(100,100,100,0.2);'
1003         ret += '}'
1004         ret += '#cursor {'
1005         ret +=     'position: absolute;'
1006         ret +=     'width: 2px;'
1007         ret +=     'background: linear-gradient(0deg, rgba(0,0,0,1), rgba(255,255,255,1), rgba(0,0,0,1), rgba(255,255,255,1), rgba(0,0,0,1), rgba(255,255,255,1), rgba(0,0,0,1), rgba(255,255,255,1), rgba(0,0,0,1));'
1008         ret +=     'background-size: 200% 200%;'
1009         ret +=     '-webkit-animation: blink 1s linear normal infinite;'
1010         ret +=     'animation: blink 1s linear normal infinite;'
1011         ret += '}'
1012         ret += '@-webkit-keyframes blink {'
1013         ret +=     '0%{background-position:0% 0%}'
1014         ret +=     '100%{background-position:0% -100%}'
1015         ret += '}'
1016         ret += '@keyframes blink { '
1017         ret +=     '0%{background-position:0% 0%}'
1018         ret +=     '100%{background-position:0% -100%}'
1019         ret += '}'
1020         ret += '.ann_box {'
1021         ret +=     'z-index: 5;'
1022         ret +=     'position: absolute;'
1023         ret +=     'border: 1px solid rgba(0,0,0,0.1);'
1024         ret +=     'outline: 1px solid rgba(255,255,255,0.1);' // in case there's a black background
1025         ret += '}'
1026         ret += '.ann_tag {'
1027         ret +=     'z-index: 10;'
1028         ret +=     'position: absolute;'
1029         ret +=     'font-size: 8px;'
1030         ret +=     'white-space: pre;'
1031         ret +=     'background: rgba(255,255,255,0.4);'
1032         ret +=     '-ms-user-select: none;'
1033         ret +=     '-webkit-user-select: none;'
1034         ret +=     '-moz-user-select: none;'
1035         ret +=     'user-select: none;'
1036         ret += '}'
1037         return ret
1038 }
1039 PeachHTML5Editor.prototype.overlay_event_to_inner_xy = function(e) {
1040         var x, y
1041         if (this.wrap2_offset == null) {
1042                 this.wrap2_offset = get_el_bounds(this.wrap2)
1043         }
1044         x = e.pageX - overlay_padding
1045         y = e.pageY - overlay_padding + this.wrap2.scrollTop
1046         return {
1047                 x: x - this.wrap2_offset.x,
1048                 y: y - this.wrap2_offset.y
1049         }
1050 }
1051 PeachHTML5Editor.prototype.onclick = function(e) {
1052         var new_cursor, xy
1053         xy = this.overlay_event_to_inner_xy(e)
1054         new_cursor = xy_to_cursor(this.tree, xy)
1055         if (new_cursor != null) {
1056                 this.move_cursor(new_cursor)
1057         } else {
1058                 this.kill_cursor()
1059         }
1060         return false
1061 }
1062 PeachHTML5Editor.prototype.ondoubleclick = function(e) {
1063         return false
1064 }
1065 PeachHTML5Editor.prototype.onkeyup = function(e) {
1066         if (e.ctrlKey) {
1067                 return
1068         }
1069         if (ignore_key_codes[e.keyCode] != null) {
1070                 return false
1071         }
1072         //return false if control_key_codes[e.keyCode] != null
1073 }
1074 PeachHTML5Editor.prototype.onkeydown = function(e) {
1075         var new_cursor, saved_ideal_x
1076         if (e.ctrlKey) {
1077                 return
1078         }
1079         if (ignore_key_codes[e.keyCode] != null) {
1080                 return false
1081         }
1082         //return false if control_key_codes[e.keyCode] != null
1083         switch (e.keyCode) {
1084                 case KEY_LEFT:
1085                         if (this.cursor != null) {
1086                                 new_cursor = find_prev_cursor_position(this.tree, this.cursor)
1087                         } else {
1088                                 new_cursor = first_cursor_position(this.tree)
1089                         }
1090                         if (new_cursor != null) {
1091                                 this.move_cursor(new_cursor)
1092                         }
1093                         return false
1094                 case KEY_RIGHT:
1095                         if (this.cursor != null) {
1096                                 new_cursor = find_next_cursor_position(this.tree, this.cursor)
1097                         } else {
1098                                 new_cursor = last_cursor_position(this.tree)
1099                         }
1100                         if (new_cursor != null) {
1101                                 this.move_cursor(new_cursor)
1102                         }
1103                         return false
1104                 case KEY_UP:
1105                         if (this.cursor != null) {
1106                                 new_cursor = find_up_cursor_position(this.tree, this.cursor, this.cursor_ideal_x)
1107                                 if (new_cursor != null) {
1108                                         saved_ideal_x = this.cursor_ideal_x
1109                                         this.move_cursor(new_cursor)
1110                                         this.cursor_ideal_x = saved_ideal_x
1111                                 }
1112                         } else {
1113                                 // move cursor to first position in document
1114                                 new_cursor = first_cursor_position(this.tree)
1115                                 if (new_cursor != null) {
1116                                         this.move_cursor(new_cursor)
1117                                 }
1118                         }
1119                         return false
1120                 case KEY_DOWN:
1121                         if (this.cursor != null) {
1122                                 new_cursor = find_down_cursor_position(this.tree, this.cursor, this.cursor_ideal_x)
1123                                 if (new_cursor != null) {
1124                                         saved_ideal_x = this.cursor_ideal_x
1125                                         this.move_cursor(new_cursor)
1126                                         this.cursor_ideal_x = saved_ideal_x
1127                                 }
1128                         } else {
1129                                 // move cursor to first position in document
1130                                 new_cursor = last_cursor_position(this.tree)
1131                                 if (new_cursor != null) {
1132                                         this.move_cursor(new_cursor)
1133                                 }
1134                         }
1135                         return false
1136                 case KEY_END:
1137                         new_cursor = last_cursor_position(this.tree)
1138                         if (new_cursor != null) {
1139                                 this.move_cursor(new_cursor)
1140                         }
1141                         return false
1142                 case KEY_BACKSPACE:
1143                         this.on_key_backspace(e)
1144                         return false
1145                 case KEY_DELETE:
1146                         if (this.cursor == null) {
1147                                 return false
1148                         }
1149                         new_cursor = find_next_cursor_position(this.tree, {n: this.cursor.n, i: this.cursor.i})
1150                         // try moving cursor right and then running backspace code
1151                         // TODO replace this hack with a real implementation
1152                         if (new_cursor != null) {
1153                                 // try to detect common case where cursor goes inside an block,
1154                                 // but doesn't pass a character (and advance one more in that case)
1155                                 if (new_cursor.n !== this.cursor.n && new_cursor.i === 0) {
1156                                         if (new_cursor.n.type === 'text' && new_cursor.n.text.length > 0) {
1157                                                 if (new_cursor.n.parent != null) {
1158                                                         if (!this.is_display_block(new_cursor.n.parent)) {
1159                                                                 // FIXME should test run sibling
1160                                                                 new_cursor = new_cursor_position({n: new_cursor.n, i: new_cursor.i + 1})
1161                                                         }
1162                                                 }
1163                                         }
1164                                 }
1165                         }
1166                         if (new_cursor != null) {
1167                                 if (new_cursor.n !== this.cursor.n || new_cursor.i !== this.cursor.i) {
1168                                         this.move_cursor(new_cursor)
1169                                         this.on_key_backspace(e)
1170                                 }
1171                         }
1172                         return false
1173                 case KEY_ENTER:
1174                         this.on_key_enter(e)
1175                         return false
1176                 case KEY_ESCAPE:
1177                         this.kill_cursor()
1178                         return false
1179                 case KEY_HOME:
1180                         new_cursor = first_cursor_position(this.tree)
1181                         if (new_cursor != null) {
1182                                 this.move_cursor(new_cursor)
1183                         }
1184                         return false
1185                 case KEY_INSERT:
1186                         return false
1187                 case KEY_PAGE_UP:
1188                         this.on_page_up_key(e)
1189                         return false
1190                 case KEY_PAGE_DOWN:
1191                         this.on_page_down_key(e)
1192                         return false
1193                 case KEY_TAB:
1194                         return false
1195         }
1196 }
1197 PeachHTML5Editor.prototype.onkeypress = function(e) {
1198         var char, new_cursor
1199         if (e.ctrlKey) {
1200                 return
1201         }
1202         if (ignore_key_codes[e.keyCode] != null) {
1203                 return false
1204         }
1205         char = e.charCode != null ? e.charCode : e.keyCode
1206         if (char && (this.cursor != null)) {
1207                 char = String.fromCharCode(char)
1208                 this.insert_character(this.cursor.n, this.cursor.i, char)
1209                 this.text_cleanup(this.cursor.n)
1210                 this.changed()
1211                 new_cursor = new_cursor_position({n: this.cursor.n, i: this.cursor.i + 1})
1212                 if (new_cursor) {
1213                         this.move_cursor(new_cursor)
1214                 } else {
1215                         console.log("ERROR: couldn't find cursor position after insert")
1216                         this.kill_cursor()
1217                 }
1218         }
1219         return false
1220 }
1221 PeachHTML5Editor.prototype.on_key_enter = function(e) { // enter key pressed
1222         var before, cur_block, i, n, new_cursor, new_node, new_text, parent_el, pc
1223         if (!this.cursor_visible) {
1224                 return
1225         }
1226         cur_block = this.cursor.n
1227         while (true) {
1228                 if (cur_block.type === 'tag') {
1229                         if (is_display_block(cur_block.el)) {
1230                                 break
1231                         }
1232                 }
1233                 if (cur_block.parent == null) {
1234                         return
1235                 }
1236                 cur_block = cur_block.parent
1237         }
1238         // find array to insert new element into
1239         if (cur_block.parent === this.tree_parent) {
1240                 parent_el = this.idoc.body
1241                 pc = this.tree
1242         } else {
1243                 parent_el = cur_block.parent.el
1244                 pc = cur_block.parent.children
1245         }
1246         for (i = 0; i < pc.length; ++i) {
1247                 n = pc[i]
1248                 if (n === cur_block) {
1249                         break
1250                 }
1251         }
1252         i += 1 // we want to be after it
1253         if (i < pc.length) {
1254                 before = pc[i].el
1255         } else {
1256                 before = null
1257         }
1258         // TODO if content after cursor
1259         // TODO new block is empty
1260         new_text = new peach_parser.Node('text', {text: ' '})
1261         new_node = new peach_parser.Node('tag', {
1262                 name: 'p',
1263                 parent: cur_block.parent,
1264                 attrs: {style: 'white-space: pre-wrap'},
1265                 children: [new_text]
1266         })
1267         new_text.parent = new_node
1268         new_text.el = domify(this.idoc, {text: ' '})
1269         new_node.el = domify(this.idoc, {p: {style: 'white-space: pre-wrap', children: [new_text.el]}})
1270         pc.splice(i, 0, new_node)
1271         parent_el.insertBefore(new_node.el, before)
1272         this.changed()
1273         new_cursor = new_cursor_position({
1274                 n: new_text,
1275                 i: 0
1276         })
1277         if (new_cursor == null) {
1278                 throw 'bork bork'
1279         }
1280         this.move_cursor(new_cursor)
1281         // TODO move content past cursor into this new block
1282         return false
1283 }
1284 // unlike the global function, this takes a Node, not an element
1285 PeachHTML5Editor.prototype.is_display_block = function(n) {
1286         // TODO stop calling global function, merge it into here, use iframe's window object
1287         if (n.type !== 'tag') {
1288                 return false
1289         }
1290         return is_display_block(n.el)
1291 }
1292 PeachHTML5Editor.prototype.find_block_parent = function(n) {
1293         while (true) {
1294                 n = n.parent
1295                 if (n == null) {
1296                         return null
1297                 }
1298                 if (this.is_display_block(n)) {
1299                         return n
1300                 }
1301                 if (n === this.tree_parent) {
1302                         return n
1303                 }
1304         }
1305         return null
1306 }
1307 // return a flat array of nodes (text, <br>, and later also inline-block)
1308 // that are flowing/wrapping together. n can be the containing block, or any
1309 // element inside it.
1310 PeachHTML5Editor.prototype.get_text_run = function(n) {
1311         var block, ret
1312         ret = []
1313         if (this.is_display_block(n)) {
1314                 block = n
1315         } else {
1316                 block = this.find_block_parent(n)
1317                 if (block == null) {
1318                         return ret
1319                 }
1320         }
1321         traverse_tree(block.children, (function(_this) { return function(n) {
1322                 var disp
1323                 if (n.type === 'text') {
1324                         ret.push(n)
1325                 } else if (n.type === 'tag') {
1326                         if (n.name === 'br') {
1327                                 ret.push(n)
1328                         } else {
1329                                 disp = _this.computed_style(n)
1330                                 if (disp === 'inline-block') {
1331                                         ret.push(n)
1332                                 }
1333                         }
1334                 }
1335                 return false // not done traversing
1336         }})(this))
1337         return ret
1338 }
1339 PeachHTML5Editor.prototype.node_is_decendant = function(young, old) {
1340         while (young != null && young !== this.tree_parent) {
1341                 if (young === old) {
1342                         return true
1343                 }
1344                 young = young.parent
1345         }
1346         return false
1347 }
1348 // helper for on_key_backspace
1349 PeachHTML5Editor.prototype._merge_left = function(state) {
1350         var pi, prev
1351         // the node prev to n was not prev to it a moment ago, merge with it if reasonable
1352         pi = state.n.parent.children.indexOf(state.n)
1353         if (pi > 0) {
1354                 prev = state.n.parent.children[pi - 1]
1355                 if (prev.type === 'text') {
1356                         state.i = prev.text.length
1357                         prev.text = prev.el.textContent = prev.text + state.n.text
1358                         this.remove_node(state.n)
1359                         state.n = prev
1360                         state.changed = true
1361                         state.moved_cursor = true
1362                 }
1363         }
1364         // else // TODO merge possible consecutive matching inline tags at @cursor
1365         return state
1366 }
1367 // helper for on_key_backspace
1368 // remove n from the dom, also remove its inline parents that are emptied by removing n
1369 PeachHTML5Editor.prototype._backspace_node_helper = function(n, run, run_i) {
1370         var block
1371         if (run == null) {
1372                 run = this.get_text_run(n)
1373         }
1374         if (run_i == null) {
1375                 run_i = run.indexOf(n)
1376         }
1377         block = this.find_block_parent(n)
1378         this.remove_node(n)
1379         n = n.parent
1380         while (n != null && n !== block) {
1381                 // bail if the previous node in this run is also inside the same parent
1382                 if (run_i > 0) {
1383                         if (this.node_is_decendant(run[run_i - 1], n)) {
1384                                 break
1385                         }
1386                 }
1387                 // bail if the next node in this run is also inside the same parent
1388                 if (run_i + 1 < run.length) {
1389                         if (this.node_is_decendant(run[run_i + 1], n)) {
1390                                 break
1391                         }
1392                 }
1393                 // move any sibling nodes to parent. These nodes are not in the text run
1394                 while (n.children.length > 0) {
1395                         this.move_node(n.children[0], n.parent, n)
1396                 }
1397                 // remove (now completely empty) inline parent
1398                 this.remove_node(n)
1399                 // proceed to outer parent
1400                 n = n.parent
1401         }
1402 }
1403 PeachHTML5Editor.prototype.on_key_backspace = function(e) {
1404         var block, changed, merge_state, n, ncb, need_text_cleanup, new_cursor, pcb, post, pre, prev, prev_cursor, run, run_i
1405         if (this.cursor == null) {
1406                 return
1407         }
1408         new_cursor = null
1409         run = null
1410         changed = true
1411         if (this.cursor.i === 0) { // cursor is at start of text node
1412                 if (run == null) {
1413                         run = this.get_text_run(this.cursor.n)
1414                 }
1415                 run_i = run.indexOf(this.cursor.n)
1416                 if (run_i === 0) { // if at start of text run
1417                         block = this.find_block_parent(this.cursor.n)
1418                         prev_cursor = find_prev_cursor_position(this.tree, {n: this.cursor.n, i: 0})
1419                         if (prev_cursor === null) { // if in first text run of document
1420                                 // do nothing (there's nothing text-like to the left of the cursor)
1421                                 return
1422                         }
1423                         // else merge with prev/outer text run
1424                         pcb = this.find_block_parent(prev_cursor.n)
1425                         while (block.children.length > 0) {
1426                                 this.move_node(block.children[0], pcb)
1427                         }
1428                         this.remove_node(block)
1429                         // merge possible consecutive text nodes at @cursor
1430                         merge_state = {n: this.cursor.n}
1431                         this._merge_left(merge_state)
1432                         this.text_cleanup(merge_state.n)
1433                         new_cursor = new_cursor_position({n: merge_state.n, i: merge_state.i})
1434                 } else { // at start of text node, but not start of text run
1435                         prev = run[run_i - 1]
1436                         if (prev.type === 'text') { // if previous in text run is text
1437                                 if (prev.text.length === 1) { // if emptying prev (in text run)
1438                                         this._backspace_node_helper(prev, run, run_i)
1439                                         merge_state = {n: this.cursor.n, i: this.cursor.i}
1440                                         this._merge_left(merge_state)
1441                                         this.text_cleanup(merge_state.n)
1442                                         new_cursor = new_cursor_position({n: merge_state.n, i: merge_state.i})
1443                                 } else { // prev in run is text with muliple chars
1444                                         // delete last character in prev
1445                                         prev.text = prev.text.substr(0, prev.text.length - 1)
1446                                         prev.el.textContent = prev.text
1447                                         this.text_cleanup(this.cursor.n)
1448                                         new_cursor = new_cursor_position({n: this.cursor.n, i: this.cursor.i})
1449                                 }
1450                         } else if (prev.name === 'br' || prev.name === 'hr') {
1451                                 this._backspace_node_helper(prev, run, run_i)
1452                                 merge_state = {n: this.cursor.n, i: this.cursor.i}
1453                                 this._merge_left(merge_state)
1454                                 this.text_cleanup(merge_state.n)
1455                                 new_cursor = new_cursor_position({n: merge_state.n, i: merge_state.i})
1456                         }
1457                         // FIXME implement this:
1458                         // else // if prev (in run) is inline-block
1459                                 // if that inline-block has text in it
1460                                         // delete last char in prev inlineblock
1461                                         // if that empties it
1462                                                 // delete it
1463                                                 // merge left
1464                                         // else
1465                                                 // move cursor inside
1466                                 // else
1467                                         // delete prev (inline) block
1468                                         // merge left
1469                                 // auto-delete this @cursor.parent(s) if this empties them
1470                 }
1471         } else { // cursor is not at start of text node
1472                 if (run == null) {
1473                         run = this.get_text_run(this.cursor.n)
1474                 }
1475                 if (this.cursor.n.text.length === 1) { // if emptying text node
1476                         if (run.length === 1) { // if emptying text run (of text/br/hr/inline-block)
1477                                 // remove inline-parents of @cursor.n
1478                                 block = this.find_block_parent(this.cursor.n)
1479                                 changed = false
1480                                 n = this.cursor.n.parent
1481                                 // note: this doesn't use _backspace_node_helper because:
1482                                 // 1. we don't want to delete the target node (we're replacing it's contents)
1483                                 // 2. we want to track whether anything was removed
1484                                 // 3. we know already know there's no other text from this run anywhere
1485                                 while (n && n !== block) {
1486                                         changed = true
1487                                         while (n.children.length > 0) {
1488                                                 this.move_node(n.children[0], n.parent, n)
1489                                         }
1490                                         this.remove_node(n)
1491                                         n = n.parent
1492                                 }
1493                                 // replace @cursor.n with a single (preserved) space
1494                                 if (this.cursor.n.text !== ' ') {
1495                                         changed = true
1496                                         this.cursor.n.text = this.cursor.n.el.textContent = ' '
1497                                 }
1498                                 if (changed) {
1499                                         this.text_cleanup(this.cursor.n)
1500                                 }
1501                                 // place the cursor to the left of that space
1502                                 new_cursor = new_cursor_position({n: this.cursor.n, i: 0})
1503                         } else { // emptying a text node (but not a whole text run)
1504                                 // figure out where cursor should land
1505                                 block = this.find_block_parent(this.cursor.n)
1506                                 new_cursor = find_prev_cursor_position(this.tree, {n: this.cursor.n, i: 0})
1507                                 ncb = this.find_block_parent(new_cursor.n)
1508                                 if (ncb !== block) {
1509                                         new_cursor = find_next_cursor_position(this.tree, {n: this.cursor.n, i: 1})
1510                                 }
1511                                 // delete text node and cleanup emptied parents
1512                                 run_i = run.indexOf(this.cursor.n)
1513                                 this._backspace_node_helper(this.cursor.n, run, run_i)
1514                                 // see if new adjacent siblings should merge
1515                                 // TODO make smarter
1516                                 if (run_i > 0 && run_i + 1 < run.length) {
1517                                         if (run[run_i - 1].type === 'text' && run[run_i + 1].type === 'text') {
1518                                                 merge_state = {n: run[run_i + 1]}
1519                                                 this._merge_left(merge_state)
1520                                                 if (merge_state.moved_cursor) {
1521                                                         new_cursor = merge_state
1522                                                 }
1523                                         }
1524                                 }
1525                                 // update whitespace preservation
1526                                 this.text_cleanup(block)
1527                                 // update cursor x/y in case things moved around
1528                                 if (new_cursor != null) {
1529                                         if (new_cursor.n.el.parentNode) { // still in dom after cleanup
1530                                                 new_cursor = new_cursor_position({n: new_cursor.n, i: new_cursor.i})
1531                                         } else {
1532                                                 new_cursor = null
1533                                         }
1534                                 }
1535                         }
1536                 } else { // there's a char left of cursor that we can delete without emptying anything
1537                         // delete character
1538                         need_text_cleanup = true
1539                         if (this.cursor.i > 1 && this.cursor.i < this.cursor.n.text.length) {
1540                                 pre = this.cursor.n.text.substr(this.cursor.i - 2, 3)
1541                                 post = pre.charAt(0) + pre.charAt(2)
1542                                 if (str_has_ws_run(pre) === str_has_ws_run(post)) {
1543                                         need_text_cleanup = false
1544                                 }
1545                         }
1546                         this.remove_character(this.cursor.n, this.cursor.i - 1)
1547                         // call text_cleanup if whe created/removed a whitespace run
1548                         if (need_text_cleanup) {
1549                                 this.text_cleanup(this.cursor.n)
1550                         }
1551                         new_cursor = new_cursor_position({n: this.cursor.n, i: this.cursor.i - 1})
1552                 }
1553         }
1554         // mark document changed and move the cursor
1555         if (changed != null) {
1556                 this.changed()
1557         }
1558         if (new_cursor != null) {
1559                 this.move_cursor(new_cursor)
1560         } else {
1561                 this.kill_cursor()
1562         }
1563 }
1564 PeachHTML5Editor.prototype.on_page_up_key = function(e) {
1565         var new_cursor, screen_y, scroll_amount
1566         if (this.wrap2.scrollTop === 0) {
1567                 if (this.cursor == null) {
1568                         return
1569                 }
1570                 new_cursor = first_cursor_position(this.tree)
1571                 if (new_cursor != null) {
1572                         if (new_cursor.n !== this.cursor.n || new_cursor.i !== this.cursor.i) {
1573                                 this.move_cursor(new_cursor)
1574                         }
1575                 }
1576                 return
1577         }
1578         if (this.cursor != null) {
1579                 screen_y = this.cursor.y - this.wrap2.scrollTop
1580         }
1581         scroll_amount = this.wrap2_height - breathing_room
1582         this.wrap2.scrollTop = Math.max(0, this.wrap2.scrollTop - scroll_amount)
1583         if (this.cursor != null) {
1584                 return this.move_cursor_into_view(screen_y + this.wrap2.scrollTop)
1585         }
1586 }
1587 PeachHTML5Editor.prototype.on_page_down_key = function(e) {
1588         var lowest_scrollpos, new_cursor, screen_y, scroll_amount
1589         lowest_scrollpos = this.wrap2.scrollHeight - this.wrap2_height
1590         if (this.wrap2.scrollTop === lowest_scrollpos) {
1591                 if (this.cursor == null) {
1592                         return
1593                 }
1594                 new_cursor = last_cursor_position(this.tree)
1595                 if (new_cursor != null) {
1596                         if (new_cursor.n !== this.cursor.n || new_cursor.i !== this.cursor.i) {
1597                                 this.move_cursor(new_cursor)
1598                         }
1599                 }
1600                 return
1601         }
1602         if (this.cursor != null) {
1603                 screen_y = this.cursor.y - this.wrap2.scrollTop
1604         }
1605         scroll_amount = this.wrap2_height - breathing_room
1606         this.wrap2.scrollTop = Math.min(lowest_scrollpos, this.wrap2.scrollTop + scroll_amount)
1607         if (this.cursor != null) {
1608                 this.move_cursor_into_view(screen_y + this.wrap2.scrollTop)
1609         }
1610 }
1611 PeachHTML5Editor.prototype.move_cursor_into_view = function(y_target) {
1612         var cur, far_enough, finder, new_cursor, saved_ideal_x, was, y_max, y_min
1613         if (y_target === this.cursor.y) {
1614                 return
1615         }
1616         was = this.cursor
1617         y_min = this.wrap2.scrollTop
1618         if (this.wrap2.scrollTop !== 0) {
1619                 y_min += breathing_room
1620         }
1621         y_max = this.wrap2.scrollTop + this.wrap2_height
1622         if (this.wrap2.scrollTop !== this.wrap2.scrollHeight - this.wrap2_height) { // downmost
1623                 y_max -= breathing_room
1624         }
1625         y_target = Math.min(y_target, y_max)
1626         y_target = Math.max(y_target, y_min)
1627         if (y_target < this.cursor.y) {
1628                 finder = find_up_cursor_position
1629                 far_enough = function(cur, target_y) {
1630                         return cur.y + cur.h <= target_y
1631                 }
1632         } else {
1633                 finder = find_down_cursor_position
1634                 far_enough = function(cur, y_target) {
1635                         return cur.y >= y_target
1636                 }
1637         }
1638         while (true) {
1639                 cur = finder(this.tree, was, this.cursor_ideal_x)
1640                 if (cur == null) {
1641                         break
1642                 }
1643                 if (far_enough(cur, y_target)) {
1644                         break
1645                 }
1646                 was = cur
1647         }
1648         if (was === this.cursor) {
1649                 was = null
1650         }
1651         if (was != null) {
1652                 if (was.y + was.h > y_max) {
1653                         was = null
1654                 } else if (was.y < y_min) {
1655                         was = null
1656                 }
1657         }
1658         if (cur != null) {
1659                 if (cur.y + cur.h > y_max) {
1660                         cur = null
1661                 } else if (cur.y < y_min) {
1662                         cur = null
1663                 }
1664         }
1665         if ((cur != null) && (was != null)) {
1666                 // both valid, pick best
1667                 if (cur.y < y_min) {
1668                         new_cursor = was
1669                 } else if (was.y + was.h > y_max) {
1670                         new_cursor = cur
1671                 } else if (cur.y - y_target < y_target - was.y) {
1672                         new_cursor = cur
1673                 } else {
1674                         new_cursor = was
1675                 }
1676         } else {
1677                 new_cursor = was != null ? was : cur
1678         }
1679         if (new_cursor != null) {
1680                 saved_ideal_x = this.cursor_ideal_x
1681                 this.move_cursor(new_cursor)
1682                 this.cursor_ideal_x = saved_ideal_x
1683         }
1684 }
1685 // remove all the editable content (and cursor, overlays, etc)
1686 PeachHTML5Editor.prototype.clear_dom = function() {
1687         while (this.idoc.body.childNodes.length) {
1688                 this.idoc.body.removeChild(this.idoc.body.childNodes[0])
1689         }
1690         this.kill_cursor()
1691 }
1692 PeachHTML5Editor.prototype.load_html = function(html) {
1693         this.tree = peach_parser(html, this.parser_opts)
1694         if (this.tree[0] == null ? true : this.tree[0].parent == null) {
1695                 this.tree = peach_parser('<p style="white-space: pre-wrap"> </p>', this.parser_opts)
1696         }
1697         this.tree_parent = this.tree[0].parent
1698         this.tree_parent.el = this.idoc.body
1699         this.clear_dom()
1700         instantiate_tree(this.tree, this.tree_parent.el)
1701         this.collapse_whitespace(this.tree)
1702         return this.changed()
1703 }
1704 PeachHTML5Editor.prototype.changed = function() {
1705         this.in_el.onchange = null
1706         if (this.pretty_print) {
1707                 this.in_el.value = this.pretty_html(this.tree)
1708         } else {
1709                 this.in_el.value = nodes_to_html(this.tree)
1710         }
1711         this.in_el.onchange = (function(_this) { return function() {
1712                 return _this.load_html(_this.in_el.value)
1713         }})(this)
1714         return this.adjust_iframe_height()
1715 }
1716 PeachHTML5Editor.prototype.adjust_iframe_height = function() {
1717         var h, s
1718         s = this.wrap2.scrollTop
1719         // when the content gets shorter, the idoc's body tag will continue to
1720         // report the old (too big) height in Chrome. The workaround is to
1721         // shrink the iframe before the content height:
1722         this.iframe.style.height = "10px"
1723         h = parseInt(this.idoc.body.scrollHeight, 10)
1724         this.iframe.style.height = h + "px"
1725         return this.wrap2.scrollTop = s
1726 }
1727 // true if n is text node with only one caracter, and the only child of a tag
1728 PeachHTML5Editor.prototype.is_only_char_in_tag = function(n, i) {
1729         if (n.type !== 'text') {
1730                 return false
1731         }
1732         if (n.text.length !== 1) {
1733                 return false
1734         }
1735         if (n.parent === this.tree_parent) {
1736                 return false
1737         }
1738         if (n.parent.children.length !== 1) {
1739                 return false
1740         }
1741         return true
1742 }
1743 // true if n is text node with just a space in it, and the only child of a tag
1744 PeachHTML5Editor.prototype.is_lone_space = function(n, i) {
1745         if (n.type !== 'text') {
1746                 return false
1747         }
1748         if (n.text !== ' ') {
1749                 return false
1750         }
1751         if (n.parent === this.tree_parent) {
1752                 return false
1753         }
1754         if (n.parent.children.length !== 1) {
1755                 return false
1756         }
1757         return true
1758 }
1759 // detect special case: typing before a space that's the only thing in a block/doc
1760 // reason: enter key creates blocks with just a space in them
1761 PeachHTML5Editor.prototype.insert_should_replace = function(n, i) {
1762         if (i !== 0) {
1763                 return false
1764         }
1765         if (n.text !== ' ') {
1766                 return false
1767         }
1768         if (n.parent === this.tree_parent) {
1769                 return true
1770         }
1771         if (n.parent.children.length === 1) {
1772                 if (n.parent.children[0] === n) {
1773                         // n is only child
1774                         return true
1775                 }
1776         }
1777         return false
1778 }
1779 // WARNING:  after calling this, you MUST call changed() and text_cleanup()
1780 PeachHTML5Editor.prototype.insert_character = function(n, i, char) {
1781         if (n.parent === this.tree_parent) {
1782                 // FIXME implement text nodes at top level
1783                 return
1784         }
1785         // insert the character
1786         if (this.insert_should_replace(n, i)) {
1787                 n.text = char
1788         } else if (i === 0) {
1789                 n.text = char + n.text
1790         } else if (i === n.text.length) {
1791                 n.text += char
1792         } else {
1793                 n.text = n.text.substr(0, i) + char + n.text.substr(i)
1794         }
1795         return n.el.nodeValue = n.text
1796 }
1797 // WARNING: after calling this, you MUST call changed() and text_cleanup()
1798 PeachHTML5Editor.prototype.remove_character = function(n, i) {
1799         n.text = n.text.substr(0, i) + n.text.substr(i + 1)
1800         return n.el.nodeValue = n.text
1801 }
1802 PeachHTML5Editor.prototype.computed_style = function(n, prop) {
1803         var style
1804         if (n.type === 'text') {
1805                 n = n.parent
1806         }
1807         style = this.iframe.contentWindow.getComputedStyle(n.el, null)
1808         return style.getPropertyValue(prop)
1809 }
1810 // returns the new white-space value that will preserve spaces for node n
1811 PeachHTML5Editor.prototype.preserve_space = function(n, ideal_target) {
1812         var target, ws, ref
1813         if (n.type === 'text') {
1814                 target = n.parent
1815         } else {
1816                 target = n
1817         }
1818         while (target !== ideal_target && !target.el.style.whiteSpace) {
1819                 if (target == null) {
1820                         console.log("bug #967123")
1821                         return
1822                 }
1823                 target = target.parent
1824         }
1825         ws = (ref = ws_props[target.el.style.whiteSpace]) != null ? ref.to_preserve : null
1826         if (ws == null) {
1827                 ws = 'pre-wrap'
1828         }
1829         target.el.style.whiteSpace = ws
1830         this.update_style_from_el(target)
1831         return ws
1832 }
1833 PeachHTML5Editor.prototype.update_style_from_el = function(n) {
1834         var style
1835         style = n.el.getAttribute('style')
1836         if (style != null && style != '') {
1837                 return n.attrs.style = style
1838         } else {
1839                 if (n.attrs.style != null) {
1840                         return delete n.attrs.style
1841                 }
1842         }
1843 }
1844 // remove whitespace that would be trimmed
1845 // replace whitespace that would collapse with a single space
1846 // FIXME remove whitespace from after <br> (but not before)
1847 // FIXME rewrite to
1848 //     check computed white-space prop on txt parents
1849 //     batch replace txt node contents (ie don't loop for each char)
1850 PeachHTML5Editor.prototype.collapse_whitespace = function(tree) {
1851         var cur, cur_i, cur_px, first, iterate, next, next_i, next_pos, next_px, operate, pos, prev, prev_i, prev_pos, prev_px, queue, remove, removed_char, replace_with_space
1852         if (tree == null) {
1853                 tree = this.tree
1854         }
1855         prev = cur = next = null
1856         prev_i = cur_i = next_i = 0
1857         prev_pos = pos = next_pos = null
1858         prev_px = cur_px = next_px = null
1859         first = true
1860         removed_char = null
1861
1862         tree_remove_empty_text_nodes(tree)
1863
1864         iterate = function(tree, cb) {
1865                 var advance, block, i, j, n
1866                 for (j = 0; j < tree.length; j++) {
1867                         n = tree[j]
1868                         if (n.type === 'text') {
1869                                 i = 0
1870                                 while (i < n.text.length) { // don't foreach, cb might remove chars
1871                                         advance = cb(n, i)
1872                                         if (advance) {
1873                                                 i += 1
1874                                         }
1875                                 }
1876                         }
1877                         if (n.type === 'tag') {
1878                                 block = is_display_block(n.el)
1879                                 if (block) {
1880                                         cb(null)
1881                                 }
1882                                 if (n.children.length > 0) {
1883                                         iterate(n.children, cb)
1884                                 }
1885                                 if (block) {
1886                                         cb(null)
1887                                 }
1888                         }
1889                 }
1890         }
1891         // remove cur char
1892         remove = function(undo) {
1893                 if (undo) {
1894                         cur.el.textContent = cur.text = (cur.text.substr(0, cur_i)) + removed_char + (cur.text.substr(cur_i))
1895                         if (next === cur) { // in same text node
1896                                 next_i += 1
1897                         }
1898                         return -1
1899                 } else {
1900                         removed_char = cur.text.charAt(cur_i)
1901                         cur.el.textContent = cur.text = (cur.text.substr(0, cur_i)) + (cur.text.substr(cur_i + 1))
1902                         if (next === cur) { // in same text node
1903                                 if (next_i === 0) {
1904                                         throw "how is this possible?"
1905                                 }
1906                                 next_i -= 1
1907                         }
1908                         return 1
1909                 }
1910         }
1911         replace_with_space = function(undo) {
1912                 if (undo) {
1913                         cur.text = (cur.text.substr(0, cur_i)) + removed_char + (cur.text.substr(cur_i + 1))
1914                         cur.el.textContent = cur.text
1915                 } else {
1916                         removed_char = cur.text.charAt(cur_i)
1917                         if (removed_char !== ' ') {
1918                                 cur.text = (cur.text.substr(0, cur_i)) + ' ' + (cur.text.substr(cur_i + 1))
1919                                 cur.el.textContent = cur.text
1920                         }
1921                 }
1922                 return 0
1923         }
1924         // return true if cur was removed from the dom (ie re-use same prev)
1925         operate = function() {
1926                 // cur definitately set
1927                 // prev and/or next might be null, indicating the start/end of a display:block
1928                 var bounds, dbg, fixer, fixers, i, need_undo, new_next_px, new_prev_px, removed, undo_arg
1929                 if (!is_space_code(cur.text.charCodeAt(cur_i))) {
1930                         return false
1931                 }
1932                 fixers = [remove, replace_with_space]
1933                 // check for common case: single whitespace surrounded by non-whitespace chars
1934                 if ((prev != null) && (next != null)) {
1935                         if (!((is_space_code(prev.text.charCodeAt(prev_i))) || (is_space_code(next.text.charCodeAt(next_i))))) {
1936                                 dbg = cur.text.charCodeAt(cur_i)
1937                                 if (cur.text.charAt(cur_i) === ' ') {
1938                                         return false
1939                                 } else {
1940                                         fixers = [replace_with_space]
1941                                 }
1942                         }
1943                 }
1944                 bounds = text_range_bounds(cur.el, cur_i, cur_i + 1)
1945                 // consistent cases:
1946                 // 1. zero rects returned by getClientRects() means collapsed space
1947                 if (bounds === null) {
1948                         return remove()
1949                 }
1950                 // 2. width greater than zero means visible space
1951                 if (bounds.w > 0) {
1952                         // has bounds, don't try removing
1953                         fixers = [replace_with_space]
1954                 }
1955                 // now the weird edge cases...
1956                 //
1957                 // firefox and chromium both report zero width for characters at the end
1958                 // of a line where the text wraps (automatically, due to word-wrap) to
1959                 // the next line. These do not appear to be distinguishable from
1960                 // collapsed spaces via the range/bounds api, so...
1961                 //
1962                 // remove it from the dom, and if prev or next moves, put it back.
1963                 //
1964                 // this block (try changing it, put it back if something moves) is also
1965                 // used on collapsable whitespace characters besides space. In this case
1966                 // the character is replaced with a normal space character instead of
1967                 // removed
1968                 if ((prev != null) && (prev_px == null)) {
1969                         prev_px = new_cursor_position({n: prev, i: prev_i})
1970                 }
1971                 if ((next != null) && (next_px == null)) {
1972                         next_px = new_cursor_position({n: next, i: next_i})
1973                 }
1974                 //if prev is null and next is null
1975                 //      parent_px = cur.parent.el.getBoundingClientRect()
1976                 undo_arg = true // just for readabality
1977                 removed = 0
1978                 for (i = 0; i < fixers.length; i++) {
1979                         fixer = fixers[i]
1980                         if (removed > 0) {
1981                                 break
1982                         }
1983                         removed += fixer()
1984                         need_undo = false
1985                         if (prev != null) {
1986                                 if (prev_px != null) {
1987                                         new_prev_px = new_cursor_position({n: prev, i: prev_i})
1988                                         if (new_prev_px != null) {
1989                                                 if (new_prev_px.x !== prev_px.x || new_prev_px.y !== prev_px.y) {
1990                                                         need_undo = true
1991                                                 }
1992                                         } else {
1993                                                 need_undo = true
1994                                         }
1995                                 } else {
1996                                         console.log("this shouldn't happen, we remove spaces that don't locate")
1997                                 }
1998                         }
1999                         if ((next != null) && !need_undo) {
2000                                 if (next_px != null) {
2001                                         new_next_px = new_cursor_position({n: next, i: next_i})
2002                                         if (new_next_px != null) {
2003                                                 if (new_next_px.x !== next_px.x || new_next_px.y !== next_px.y) {
2004                                                         need_undo = true
2005                                                 }
2006                                         } else {
2007                                                 need_undo = true
2008                                         }
2009                                 }
2010                                 //else
2011                                 //      console.log "removing space becase space after it is collapsed"
2012                         }
2013                         if (need_undo) {
2014                                 removed += fixer(undo_arg)
2015                         }
2016                 }
2017                 if (removed > 0) {
2018                         return true
2019                 } else {
2020                         return false
2021                 }
2022         }
2023         // pass null at start/end of display:block
2024         queue = function(n, i) {
2025                 var advance, removed
2026                 next = n
2027                 next_i = i
2028                 next_px = null
2029                 advance = true
2030                 if (cur != null) {
2031                         removed = operate()
2032                         // don't advance (to the next character next time) if we removed a
2033                         // character from the same text node as ``next``, because doing so
2034                         // renumbers the indexes in that string
2035                         if (removed && cur === next) {
2036                                 advance = false
2037                         }
2038                 } else {
2039                         removed = false
2040                 }
2041                 if (!removed) {
2042                         prev = cur
2043                         prev_i = cur_i
2044                         prev_px = cur_px
2045                 }
2046                 cur = next
2047                 cur_i = next_i
2048                 cur_px = next_px
2049                 return advance
2050         }
2051         queue(null)
2052         iterate(tree, queue)
2053         queue(null)
2054
2055         tree_remove_empty_text_nodes(tree)
2056 }
2057 // call this after you insert or remove inline nodes. It will:
2058 //    merge consecutive text nodes
2059 //    remove empty text nodes
2060 //    adjust white-space property
2061 // note: this assumes that all whitespace in text nodes should be displayed
2062 // (ie not collapse or be trimmed) and will change the white-space property
2063 // as needed to achieve this.
2064 PeachHTML5Editor.prototype.text_cleanup = function(n) {
2065         var block, eats_start_sp, i, last, n_i, need_preserve, prev, prev_i, run, ws
2066         if (this.is_display_block(n)) {
2067                 block = n
2068         } else {
2069                 block = this.find_block_parent(n)
2070                 if (block == null) {
2071                         return
2072                 }
2073         }
2074         run = this.get_text_run(block)
2075         if (run == null) {
2076                 return
2077         }
2078         // merge consecutive text elements
2079         if (run.length > 1) {
2080                 i = 1
2081                 prev = run[0]
2082                 while (i < run.length) {
2083                         n = run[i]
2084                         if (prev.type === 'text' && n.type === 'text') {
2085                                 if (prev.parent === n.parent) {
2086                                         prev_i = n.parent.children.indexOf(prev)
2087                                         n_i = n.parent.children.indexOf(n)
2088                                         if (n_i === prev_i + 1) {
2089                                                 prev.text = prev.text + n.text
2090                                                 prev.el.textContent = prev.text
2091                                                 this.remove_node(n)
2092                                                 run.splice(i, 1)
2093                                                 continue // don't increment i or change prev
2094                                         }
2095                                 }
2096                         }
2097                         i += 1
2098                         prev = n
2099                 }
2100         }
2101         // remove empty text nodes
2102         i = 0
2103         while (i < run.length) {
2104                 n = run[i]
2105                 if (n.type === 'text') {
2106                         if (n.text === '') {
2107                                 this.remove_node(n)
2108                                 // FIXME maybe remove parents recursively if this makes them empty
2109                                 run.splice(i, 1)
2110                                 continue // don't increment i
2111                         }
2112                 }
2113                 i += 1
2114         }
2115         // note: inline tags can have white-space:pre-line/etc
2116         // note: inline-blocks have their whitespace collapsed independantly of outer run
2117         // note: inline-blocks are treated like non-whitespace char even if empty
2118         if (block.el.style.whiteSpace != null) {
2119                 ws = block.el.style.whiteSpace
2120                 if (ws_props[ws]) {
2121                         if (ws_props[ws].space) {
2122                                 if (ws_props[ws].to_collapse === 'normal') {
2123                                         block.el.style.whiteSpace = null
2124                                 } else {
2125                                         block.el.style.whiteSpace = ws_props[ws].to_collapse
2126                                 }
2127                                 this.update_style_from_el(block)
2128                         }
2129                 }
2130         }
2131         // note: space after <br> colapses, but not space before
2132         // check for spaces that would collapse without help
2133         eats_start_sp = true // if the next node starts with space it collapses (unless pre)
2134         prev = null
2135         for (i = 0; i < run.length; ++i) {
2136                 n = run[i]
2137                 if (n.type === 'tag') {
2138                         if (n.name === 'br') {
2139                                 eats_start_sp = true
2140                         } else {
2141                                 eats_start_sp = false
2142                         }
2143                 } else {
2144                         need_preserve = false
2145                         if (n.type !== 'text') {
2146                                 console.log("bug #232308")
2147                                 return
2148                         }
2149                         if (eats_start_sp) {
2150                                 if (is_space_code(n.text.charCodeAt(0))) {
2151                                         need_preserve = true
2152                                 }
2153                         }
2154                         if (!need_preserve) {
2155                                 need_preserve = multi_sp_regex.test(n.text)
2156                         }
2157                         if (need_preserve) {
2158                                 // do we have it already?
2159                                 ws = this.computed_style(n, 'white-space') // FIXME implement this
2160                                 if (ws_props[ws] != null ? !ws_props[ws].space : true) {
2161                                         // 2nd arg is ideal target for css rule
2162                                         ws = this.preserve_space(n, block)
2163                                 }
2164                                 eats_start_sp = false
2165                         } else {
2166                                 if (is_space_code(n.text.charCodeAt(n.text.length - 1))) {
2167                                         ws = this.computed_style(n, 'white-space') // FIXME implement this
2168                                         if ((ref1 = ws_props[ws]) != null ? ref1.space : void 0) {
2169                                                 eats_start_sp = false
2170                                         } else {
2171                                                 eats_start_sp = true
2172                                         }
2173                                 } else {
2174                                         eats_start_sp = false
2175                                 }
2176                         }
2177                 }
2178         }
2179         // check if text ends with a collapsable space
2180         if (run.length > 0) {
2181                 last = run[run.length - 1]
2182                 if (last.type === 'text') {
2183                         if (eats_start_sp) {
2184                                 this.preserve_space(last, block)
2185                         }
2186                 }
2187         }
2188 }
2189 PeachHTML5Editor.prototype.css_clear = function(n, prop) {
2190         var css_delimiter_regex, i, styles
2191         if (n.attrs.style == null) {
2192                 return
2193         }
2194         if (n.attrs.style === '') {
2195                 return
2196         }
2197         css_delimiter_regex = new RegExp('\s*;\s*', 'g') // FIXME make this global
2198         styles = n.attrs.style.trim().split(css_delimiter)
2199         if (!(styles.length > 0)) {
2200                 return
2201         }
2202         if (styles[styles.length - 1] === '') {
2203                 styles.pop()
2204                 if (!(styles.length > 0)) {
2205                         return
2206                 }
2207         }
2208         i = 0
2209         while (i < styles.length) {
2210                 if (styles[i].substr(0, 12) === 'white-space:') {
2211                         styles.splice(i, 1)
2212                 } else {
2213                         i += 1
2214                 }
2215         }
2216 }
2217 // WARNING: after calling this one or more times, you MUST:
2218 //    if it's inline: call @text_cleanup
2219 //    call @changed()
2220 PeachHTML5Editor.prototype.remove_node = function(n) {
2221         var i
2222         i = n.parent.children.indexOf(n)
2223         if (i === -1) {
2224                 throw "BUG #9187112313"
2225         }
2226         n.el.parentNode.removeChild(n.el)
2227         n.parent.children.splice(i, 1)
2228 }
2229 // remove a node from the tree/dom, insert into new_parent before insert_before?end
2230 // WARNING: after calling this one or more times, you MUST:
2231 //    if it's inline: call @text_cleanup
2232 //    call @changed()
2233 PeachHTML5Editor.prototype.move_node = function(n, new_parent, insert_before) {
2234         var before_i, i
2235         if (insert_before == null) {
2236                 insert_before = null
2237         }
2238         i = n.parent.children.indexOf(n)
2239         if (i === -1) {
2240                 throw "Error: tried to remove node, but it's not in it's parents list of children"
2241                 return
2242         }
2243         if (insert_before != null) {
2244                 before_i = new_parent.children.indexOf(insert_before)
2245                 if (i === -1) {
2246                         throw "Error: tried to move a node to be before a non-existent node"
2247                 }
2248                 insert_before = insert_before.el
2249         }
2250         this.remove_node(n)
2251         if (insert_before != null) {
2252                 new_parent.el.insertBefore(n.el, insert_before)
2253                 new_parent.children.splice(before_i, 0, n)
2254         } else {
2255                 new_parent.el.appendChild(n.el, insert_before)
2256                 new_parent.children.push(n)
2257         }
2258         n.parent = new_parent
2259 }
2260 // remove it, forget where it was
2261 PeachHTML5Editor.prototype.kill_cursor = function() {
2262         if (this.cursor_visible) {
2263                 this.cursor_el.parentNode.removeChild(this.cursor_el)
2264                 this.cursor_visible = false
2265         }
2266         this.cursor = null
2267         this.annotate(null)
2268 }
2269 PeachHTML5Editor.prototype.move_cursor = function(cursor) {
2270         var height
2271         this.cursor_ideal_x = cursor.x
2272         this.cursor = cursor
2273         if (!this.cursor_visible) {
2274                 this.cursor_el = domify(this.outer_idoc, {div: { id: 'cursor'}})
2275                 this.overlay.appendChild(this.cursor_el)
2276                 this.cursor_visible = true
2277         }
2278         this.cursor_el.style.left = (cursor.x + overlay_padding - 1) + "px"
2279         if (cursor.h < 5) {
2280                 height = 12
2281         } else {
2282                 height = cursor.h
2283         }
2284         this.cursor_el.style.top = (cursor.y + overlay_padding + Math.round(height * .07)) + "px"
2285         this.cursor_el.style.height = (Math.round(height * 0.82)) + "px"
2286         this.annotate(cursor.n)
2287         this.scroll_into_view(cursor.y, height)
2288 }
2289 PeachHTML5Editor.prototype.scroll_into_view = function(y, h) {
2290         var downmost, upmost
2291         if (h == null) {
2292                 h = 0
2293         }
2294         y += overlay_padding // convert units from @idoc to @wrap2
2295         // very top of document
2296         if (y <= breathing_room) {
2297                 this.wrap2.scrollTop = 0
2298                 return
2299         }
2300         // very bottom of document
2301         if (y + h >= this.wrap2.scrollHeight - breathing_room) {
2302                 this.wrap2.scrollTop = this.wrap2.scrollHeight - this.wrap2_height
2303                 return
2304         }
2305         // The most scrolled up (lowest value for scrollTop) that would be OK
2306         upmost = y + h + breathing_room - this.wrap2_height
2307         upmost = Math.max(upmost, 0)
2308         // the most scrolled down (highest value for scrollTop) that would be OK
2309         downmost = y - breathing_room
2310         downmost = Math.min(downmost, this.wrap2.scrollHeight - this.wrap2_height)
2311         if (upmost > downmost) { // means h is too big to fit
2312                 // scroll so top is visible
2313                 this.wrap2.scrollTop = downmost
2314                 return
2315         }
2316         if (this.wrap2.scrollTop < upmost) {
2317                 this.wrap2.scrollTop = upmost
2318                 return
2319         }
2320         if (this.wrap2.scrollTop > downmost) {
2321                 this.wrap2.scrollTop = downmost
2322                 return
2323         }
2324 }
2325 PeachHTML5Editor.prototype.annotate = function(n) {
2326         var alpha, ann_box, ann_tag, bounds, prev_bounds
2327         while (this.matting.length > 0) {
2328                 this.overlay.removeChild(this.matting[0])
2329                 this.matting.shift()
2330         }
2331         if (n == null) {
2332                 return
2333         }
2334         prev_bounds = {x: 0, y: 0, w: 0, h: 0}
2335         alpha = 0.1
2336         while (((n != null ? n.el : void 0) != null) && n !== this.tree_parent) {
2337                 if (n.type === 'text') {
2338                         n = n.parent
2339                         continue
2340                 }
2341                 bounds = get_el_bounds(n.el)
2342                 if (bounds == null) {
2343                         return
2344                 }
2345                 if (bounds.x === prev_bounds.x && bounds.y === prev_bounds.y && bounds.w === prev_bounds.w && bounds.h === prev_bounds.h) {
2346                         n = n.parent
2347                         continue
2348                 }
2349                 ann_box = domify(this.outer_idoc, {div: {"class": 'ann_box', style: "left: " + (bounds.x - 1 + overlay_padding) + "px; top: " + (bounds.y - 2 + overlay_padding) + "px; width: " + bounds.w + "px; height: " + bounds.h + "px"}}) // outline: 1000px solid rgba(0,153,255,#{alpha});
2350                 this.overlay.appendChild(ann_box)
2351                 this.matting.push(ann_box)
2352                 ann_tag = domify(this.outer_idoc, {div: {"class": 'ann_tag', style: "left: " + (bounds.x + 1 + overlay_padding) + "px; top: " + (bounds.y - 7 + overlay_padding) + "px",children: [domify(this.outer_idoc, {text: " " + n.name + " "})]}})
2353                 this.overlay.appendChild(ann_tag)
2354                 this.matting.push(ann_tag)
2355                 n = n.parent
2356                 alpha *= 1.5
2357         }
2358 }
2359 PeachHTML5Editor.prototype.pretty_html = function(tree, indent, parent_flags) {
2360         var attr_keys, cs, display, float, i, j, in_flow, in_flow_block, inner_flags, is_block, is_br, is_text, k, n, next_indent, position, prev_in_flow_is_block, prev_in_flow_is_text, ret, visibility, want_nl, whitespace
2361         if (indent == null) {
2362                 indent = ''
2363         }
2364         if (parent_flags == null) {
2365                 parent_flags = {
2366                         pre_ish: false,
2367                         block: true,
2368                         want_nl: false
2369                 }
2370         }
2371         ret = ''
2372         want_nl = parent_flags.want_nl
2373         prev_in_flow_is_text = false
2374         prev_in_flow_is_block = false
2375         for (i = 0; i < tree.length; ++i) {
2376                 n = tree[i]
2377                 inner_flags = {
2378                         want_nl: true
2379                 }
2380                 is_br = false
2381                 switch (n.type) {
2382                         case 'tag':
2383                                 if (n.name === 'br') {
2384                                         is_br = true
2385                                 }
2386                                 is_text = false
2387                                 if (n.el.currentStyle != null) {
2388                                         cs = n.el.currentStyle
2389                                         whitespace = cs['white-space']
2390                                         display = cs['display']
2391                                         position = cs['position']
2392                                         float = cs['float']
2393                                         visibility = cs['visibility']
2394                                 } else {
2395                                         cs = this.iframe.contentWindow.getComputedStyle(n.el, null)
2396                                         whitespace = cs.getPropertyValue('white-space')
2397                                         display = cs.getPropertyValue('display')
2398                                         position = cs.getPropertyValue('position')
2399                                         float = cs.getPropertyValue('float')
2400                                         visibility = cs.getPropertyValue('visibility')
2401                                 }
2402                                 if (n.name === 'textarea') {
2403                                         inner_flags.pre_ish = true
2404                                 } else {
2405                                         inner_flags.pre_ish = whitespace.substr(0, 3) === 'pre'
2406                                 }
2407                                 switch (float) {
2408                                         case 'left':
2409                                         case 'right':
2410                                                 in_flow = false
2411                                         break
2412                                         default:
2413                                                 switch (position) {
2414                                                         case 'absolute':
2415                                                         case 'fixed':
2416                                                                 in_flow = false
2417                                                         break
2418                                                         default:
2419                                                                 if ('display' === 'none') {
2420                                                                         in_flow = false
2421                                                                 } else {
2422                                                                         switch (visibility) {
2423                                                                                 case 'hidden':
2424                                                                                 case 'collapse':
2425                                                                                         in_flow = false
2426                                                                                 break
2427                                                                                 default:
2428                                                                                         in_flow = true
2429                                                                         }
2430                                                                 }
2431                                                 }
2432                                 }
2433                                 switch (display) {
2434                                         case 'inline':
2435                                         case 'none':
2436                                                 inner_flags.block = false
2437                                                 is_block = in_flow_block = false
2438                                         break
2439                                         case 'inline-black':
2440                                                 inner_flags.block = true
2441                                                 is_block = in_flow_block = false
2442                                         break
2443                                         default:
2444                                                 inner_flags.block = true
2445                                                 is_block = true
2446                                                 in_flow_block = in_flow
2447                                 }
2448                         break
2449                         case 'text':
2450                                 is_text = true
2451                                 is_block = false
2452                                 in_flow = true
2453                                 in_flow_block = false
2454                                 break
2455                         default: // 'comment', 'doctype'
2456                                 is_text = false
2457                                 is_block = false
2458                                 in_flow = false
2459                                 in_flow_block = false
2460                 }
2461                 // print whitespace if we can
2462                 if (!parent_flags.pre_ish) {
2463                         if (!(prev_in_flow_is_text && is_br)) {
2464                                 if ((i === 0 && parent_flags.block) || in_flow_block || prev_in_flow_is_block) {
2465                                         if (want_nl) {
2466                                                 ret += "\n"
2467                                         }
2468                                         ret += indent
2469                                 }
2470                         }
2471                 }
2472                 switch (n.type) {
2473                         case 'tag':
2474                                 ret += '<' + n.name
2475                                 attr_keys = []
2476                                 for (k in n.attrs) {
2477                                         attr_keys.unshift(k)
2478                                 }
2479                                 //attr_keys.sort()
2480                                 for (j = 0; j < attr_keys.length; ++j) {
2481                                         k = attr_keys[j]
2482                                         ret += " " + k
2483                                         if (n.attrs[k].length > 0) {
2484                                                 ret += "=\"" + (enc_attr(n.attrs[k])) + "\""
2485                                         }
2486                                 }
2487                                 ret += '>'
2488                                 if (void_elements[n.name] == null) {
2489                                         if (inner_flags.block) {
2490                                                 next_indent = indent + '    '
2491                                         } else {
2492                                                 next_indent = indent
2493                                         }
2494                                         if (n.children.length) {
2495                                                 ret += this.pretty_html(n.children, next_indent, inner_flags)
2496                                         }
2497                                         ret += "</" + n.name + ">"
2498                                 }
2499                                 break
2500                         case 'text':
2501                                 if (n.parent != null ? plaintext_elements[n.parent.name] : false) {
2502                                         ret += n.text
2503                                 } else if (n.parent != null ? newline_eating_elements[n.parent.name] && n.text.charAt(0) === "\n" : false) {
2504                                         ret += enc_text("\n" + n.text)
2505                                 } else {
2506                                         ret += enc_text(n.text)
2507                                 }
2508                                 break
2509                         case 'comment':
2510                                 ret += "<!--" + n.text + "-->" // TODO encode?
2511                                 break
2512                         case 'doctype':
2513                                 ret += "<!DOCTYPE " + n.name
2514                                 if ((n.public_identifier != null) && n.public_identifier.length > 0) {
2515                                         ret += " \"" + n.public_identifier + "\""
2516                                 }
2517                                 if ((n.system_identifier != null) && n.system_identifier.length > 0) {
2518                                         ret += " \"" + n.system_identifier + "\""
2519                                 }
2520                                 ret += ">"
2521                 }
2522                 want_nl = true
2523                 if (in_flow) {
2524                         prev_in_flow_is_text = is_text
2525                         prev_in_flow_is_block = is_block || (in_flow && is_br)
2526                 }
2527         }
2528         if (tree.length) {
2529                 // output final newline if allowed
2530                 if (!parent_flags.pre_ish) {
2531                         if (prev_in_flow_is_block || parent_flags.block) {
2532                                 ret += "\n" + (indent.substr(4))
2533                         }
2534                 }
2535         }
2536         return ret
2537 }
2538 PeachHTML5Editor.prototype.onblur = function() {
2539         this.kill_cursor()
2540 }
2541 PeachHTML5Editor.prototype.have_focus = function() {
2542         this.editor_is_focused = true
2543         this.poll_for_blur()
2544 }
2545 PeachHTML5Editor.prototype.poll_for_blur = function() {
2546         if (this.poll_for_blur_timeout != null) {
2547                 return
2548         }
2549         this.poll_for_blur_timeout = timeout(150, (function(_this) { return function() {
2550                 next_frame(function() { // pause polling when browser knows we're not active/visible/etc.
2551                         _this.poll_for_blur_timeout = null
2552                         if (document.activeElement === _this.outer_iframe) {
2553                                 _this.poll_for_blur()
2554                         } else {
2555                                 _this.editor_is_focused = false
2556                                 _this.onblur()
2557                         }
2558                 })
2559         }})(this))
2560 }
2561
2562 window.peach_html5_editor = function() {
2563         // coffeescript: return new PeachHTML5Editor args...
2564         // compiles to below... there must be a better way
2565         var args
2566         args = 1 <= arguments.length ? slice.call(arguments, 0) : []
2567         return (function(func, args, ctor) {
2568                 ctor.prototype = func.prototype
2569                 var child = new ctor, result = func.apply(child, args)
2570                 return Object(result) === result ? result : child
2571         })(PeachHTML5Editor, args, function(){})
2572 }
2573
2574 }).call(this)
2575
2576 // test in browser: peach_html5_editor(document.getElementsByTagName('textarea')[0])