gecko-dev/layout/style/crashtests/1406222-2.html

16 строки
299 B
HTML

<!DOCTYPE html>
<style>
a { display: block; }
a { columns: 0px; }
a::first-line {}
</style>
<script>
onload = function() {
document.body.offsetWidth;
document.body.style.color = "green";
document.body.offsetWidth;
document.querySelector("a").href = "Something";
}
</script>
<a>Some text</a>