mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
587 B
HTML
29 lines
587 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml">
|
|||
|
<head>
|
|||
|
|
|||
|
<bindings xmlns="http://www.mozilla.org/xbl">
|
|||
|
<binding id="foo">
|
|||
|
<content><html:span> ‏ك쪄<children/></html:span></content>
|
|||
|
</binding>
|
|||
|
<binding id="empty">
|
|||
|
<content></content>
|
|||
|
</binding>
|
|||
|
</bindings>
|
|||
|
|
|||
|
|
|||
|
<script type="text/javascript">
|
|||
|
<![CDATA[
|
|||
|
|
|||
|
function boom()
|
|||
|
{
|
|||
|
document.getElementById("b").style.MozBinding = "url('#empty')";
|
|||
|
}
|
|||
|
|
|||
|
]]>
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
|
|||
|
<body onload="boom();"><table style="-moz-binding: url(#foo)"><td id="b"/></table></body>
|
|||
|
|
|||
|
</html>
|