blob: 6a65942e16ef3b312c78b763158d94953ef5e3c7 [file] [log] [blame]
<!doctype html>
<title>CSS charset: page windows-1252, CSS-HTTP windows-1251, CSS UTF-8 BOM</title>
<link rel=help href="https://drafts.csswg.org/css-syntax-3/#determine-the-fallback-encoding">
<meta charset=windows-1252>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel=stylesheet href="support/utf8-bom-http-windows-1251.css">
<div id=log></div>
<div id=&#xfffd;></div>
<script>
var elm = document.getElementById('\ufffd');
var t = async_test();
onload = t.step_func(function(){
assert_equals(getComputedStyle(elm, '').visibility, 'hidden');
this.done();
});
</script>