layout/reftests/bugs/386310-binding.xml

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <?xml version="1.0"?>
     2 <bindings xmlns="http://www.mozilla.org/xbl"
     3           xmlns:html="http://www.w3.org/1999/xhtml">
     5   <binding id="prepend">
     6     <content>
     7       <span/>
     8       <children/>
     9     </content>
    10   </binding>
    12   <binding id="append">
    13     <content>
    14       <children/>
    15       <span/>
    16     </content>
    17   </binding>
    19   <binding id="prepend-with-comment-fix" extends="#prepend">
    20     <implementation>
    21       <constructor>
    22 	var span = document.createComment("xbl generated comment to prevent bug #36");
    23 	this.insertBefore(span, this.firstChild);
    24       </constructor>
    25     </implementation>
    26   </binding>
    27 </bindings>

mercurial