blob: fc813dba029cff319fb5e0a3f9008a3a19f6f663 [file] [log] [blame]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=76701">bug 76701</a>:
map HTTP-EQUIV content-language to -webkit-locale. This particular test tests
that a content-language is used even if it appears at the end of the document.
This expectation may change, see bug. According to the HTML 5 spec, a meta
element should be processed when it is inserted into the document, regardless
of where. IE and Firefox also seem to process the content-language at the end
of the document.
</p>
<div id="console"></div>
<div id="x"></div>
<div id="y" lang="ar"></div>
<script>
function languageOfNode(id) {
var element = document.getElementById(id);
return window.getComputedStyle(element).webkitLocale;
}
shouldBeEqualToString("languageOfNode('x')", '"ja-JP"');
shouldBeEqualToString("languageOfNode('y')", '"ar"');
</script>
<meta http-equiv="content-language" content="ja-JP">
</body>
</html>