mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
762 B
HTML
24 lines
762 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml" style="font-family: monospace;">
|
||
|
<head>
|
||
|
|
||
|
<bindings xmlns="http://www.mozilla.org/xbl">
|
||
|
<binding id="w"><content><div xmlns="http://www.w3.org/1999/xhtml"><children xmlns="http://www.mozilla.org/xbl"/></div></content></binding>
|
||
|
<binding id="empty"><content/></binding>
|
||
|
</bindings>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.createElementNS("http://www.w3.org/2000/svg", "rect");
|
||
|
document.getElementById("d").previousSibling.data += "C";
|
||
|
document.getElementById("d").style.MozBinding = "url('#empty')";
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();"><span>A‮<span style="-moz-binding: url('#w');"></span>B<span id="d" style="font-size: 80%; color: green;">D</span></span></body>
|
||
|
</html>
|