mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-03 12:14:40 +03:00
22 lines
338 B
Plaintext
22 lines
338 B
Plaintext
|
#data
|
||
|
@charset "UTF-8";html{color:green}
|
||
|
/* starts with utf-8 bom */
|
||
|
#encoding
|
||
|
utf-8
|
||
|
|
||
|
#data
|
||
|
@charset "ISO-8859-1";html{color:green}
|
||
|
/* starts with utf-8 bom, so @charset is ignored */
|
||
|
#encoding
|
||
|
utf-8
|
||
|
|
||
|
#data
|
||
|
@charset "ISO-8859-2";html{color:green}
|
||
|
#encoding
|
||
|
iso-8859-2
|
||
|
|
||
|
#data
|
||
|
@charset "IMadeThisUp";html{color:green}
|
||
|
#encoding
|
||
|
utf-8
|