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

32 lines
403 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 5em;
font-family: monospace;
border: 1px solid yellow;
}
body:first-letter {
color: blue;
}
</style>
</head>
<body>
<span><span><span id="sss">Aaa </span></span>Bbbbbbbbbbbbbb<span></span></span>
<script>
document.body.offsetWidth;
sss = document.getElementById("sss");
sss.parentNode.removeChild(sss);
</script>
</body>
</html>