blob: b4af7bdbe9ebc92183e99d20c5901fbc71f21f9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<style>
details::first-line { color: green; }
* { column-count: 1 }
</style>
<script>
function go() {
a.appendChild(document.createTextNode("details"))
b.createTBody()
}
</script>
<body onload=go()>
<table id="b"></table>
<details id="a" open>
<summary hidden></summary>
This is the </details><!-- The entire line "This is ..." should be green. -->
|