Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | <bindings xmlns="http://www.mozilla.org/xbl" |
michael@0 | 3 | xmlns:html="http://www.w3.org/1999/xhtml"> |
michael@0 | 4 | |
michael@0 | 5 | <binding id="prepend"> |
michael@0 | 6 | <content> |
michael@0 | 7 | <span/> |
michael@0 | 8 | <children/> |
michael@0 | 9 | </content> |
michael@0 | 10 | </binding> |
michael@0 | 11 | |
michael@0 | 12 | <binding id="append"> |
michael@0 | 13 | <content> |
michael@0 | 14 | <children/> |
michael@0 | 15 | <span/> |
michael@0 | 16 | </content> |
michael@0 | 17 | </binding> |
michael@0 | 18 | |
michael@0 | 19 | <binding id="prepend-with-comment-fix" extends="#prepend"> |
michael@0 | 20 | <implementation> |
michael@0 | 21 | <constructor> |
michael@0 | 22 | var span = document.createComment("xbl generated comment to prevent bug #36"); |
michael@0 | 23 | this.insertBefore(span, this.firstChild); |
michael@0 | 24 | </constructor> |
michael@0 | 25 | </implementation> |
michael@0 | 26 | </binding> |
michael@0 | 27 | </bindings> |