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