blob: 3ae655d9725b3bae24efe2fc5c878ac51ca8d650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!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>
|