2 <html xmlns=
"http://www.w3.org/1999/xhtml">
4 <meta http-equiv=
"content-language" content=
" ">
5 <meta http-equiv=
"content-language" content=
"ja_JP">
6 <meta http-equiv=
"content-language" content=
"zh_CN">
7 <script src=
"../../resources/js-test.js"></script>
10 <p>Test for
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=76701">bug
76701</a>:
11 map HTTP-EQUIV content-language to -webkit-locale. This particular test tests
12 that in the event of multiple content-languages, the final content-language is
13 used as the pragma-set default language. This expectation may change, see bug.
14 The HTML5 spec decrees that the first successfully processed one be used.
15 Firefox and IE seem to use the final one.
17 <div id=
"console"></div>
19 <div id=
"y" lang=
"ar"></div>
21 function languageOfNode(id
) {
22 var element
= document
.getElementById(id
);
23 return window
.getComputedStyle(element
).webkitLocale
;
25 shouldBeEqualToString("languageOfNode('x')", '"zh_CN"');
26 shouldBeEqualToString("languageOfNode('y')", '"ar"');