mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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>
|