mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
613 B
XML
28 lines
613 B
XML
<?xml version="1.0"?>
|
|
<bindings xmlns="http://www.mozilla.org/xbl"
|
|
xmlns:html="http://www.w3.org/1999/xhtml">
|
|
|
|
<binding id="prepend">
|
|
<content>
|
|
<span/>
|
|
<children/>
|
|
</content>
|
|
</binding>
|
|
|
|
<binding id="append">
|
|
<content>
|
|
<children/>
|
|
<span/>
|
|
</content>
|
|
</binding>
|
|
|
|
<binding id="prepend-with-comment-fix" extends="#prepend">
|
|
<implementation>
|
|
<constructor>
|
|
var span = document.createComment("xbl generated comment to prevent bug #36");
|
|
this.insertBefore(span, this.firstChild);
|
|
</constructor>
|
|
</implementation>
|
|
</binding>
|
|
</bindings>
|