tenfourfox/layout/reftests/bugs/420790-1.xhtml
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

27 lines
637 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="foo">
<content><html:span>ABC DEF<children xmlns="http://www.mozilla.org/xbl"/></html:span></content>
</binding>
</bindings>
<script type="text/javascript">
function boom()
{
var cap = document.getElementById("cap");
var space = document.createTextNode(" ");
cap.insertBefore(space, cap.firstChild);
}
</script>
</head>
<body onload="boom();">&#x202D;<caption id="cap" style="-moz-binding: url('#foo');"><span style="display: none;"/></caption></body>
</html>