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

17 lines
282 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style>
div:after { content: 'X'; border:1px solid red; }
div.foo:after { content: 'Y'; }
</style>
</head>
<body>
<div id="d"></div>
<script>
document.body.offsetTop;
document.getElementById("d").setAttribute("class", "foo");
</script>
</body>
</html>