blob: fc5f5b9e01749f6555c3739f5af8a4e5c3b404d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>CSS 2.1 Test Suite: @charset</title>
<link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#charset"/>
<meta name="flags" content="" />
<style type="text/css">
body { color: red; }
</style>
<link rel="stylesheet" type="text/css" charset="us-ascii"
href="test-charset-utf-16-bom-le.css" />
</head>
<body>
This should be green
</body>
</html>
|