bzbarsky%mit.edu 7a0731e5fe Bug 488390. Get special siblings correctly even when bidi is involved. r+sr=roc, a=dveditz
git-svn-id: svn://10.0.0.236/trunk@256947 18797224-902f-48f8-a5cc-f745e15eee43
2009-04-17 17:18:52 +00:00

19 lines
469 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
document.getElementById("select").removeAttribute("multiple");
// Trigger a reflow
document.body.style.width = 0;
// And flush layout
document.body.offsetWidth;
}
</script>
</head>
<body onload="boom();"><span>&#x202E;text text text text text&#x202C;<span><dir/></span><span><tr><select id="select" multiple="multiple"/></tr></span></span></body>
</html>