зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
299 B
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>
|