gecko-dev/layout/style/crashtests/1406222-2.html
Boris Zbarsky c629c7383a Bug 1406222 tests. r=heycam
MozReview-Commit-ID: 6fNGlwC8ZwA
2017-10-07 10:10:18 +02:00

16 lines
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>