blob: 367a9afb6ab51cb971c559ddb9ec1378267314fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<style id="style">
* {
display: contents;
}
*::first-line,
#id_3 {
</style>
<script>
function start() {
const style = document.getElementById('style')
style.prepend('�')
}
document.addEventListener('DOMContentLoaded', start)
</script>
</html>
|