| 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"> | |
| 8 <script src="../js/resources/js-test-pre.js"></script> | 7 <script src="../js/resources/js-test-pre.js"></script> |
| 9 </head> | 8 </head> |
| 10 <body> | 9 <body> |
| 11 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=76701">bug 76701</a
>: | 10 <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 | 11 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 | 12 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. | 13 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. | 14 The HTML5 spec decrees that the first successfully processed one be used. |
| 16 Firefox and IE seem to use the final one. | 15 Firefox and IE seem to use the final one. |
| 17 </p> | 16 </p> |
| 18 <div id="console"></div> | 17 <div id="console"></div> |
| 19 <div id="x"></div> | 18 <div id="x"></div> |
| 20 <div id="y" lang="ar"></div> | 19 <div id="y" lang="ar"></div> |
| 21 <script> | 20 <script> |
| 22 function languageOfNode(id) { | 21 function languageOfNode(id) { |
| 23 var element = document.getElementById(id); | 22 var element = document.getElementById(id); |
| 24 return window.getComputedStyle(element).webkitLocale; | 23 return window.getComputedStyle(element).webkitLocale; |
| 25 } | 24 } |
| 26 shouldBeEqualToString("languageOfNode('x')", "zh_CN"); | 25 shouldBeEqualToString("languageOfNode('x')", "zh_CN"); |
| 27 shouldBeEqualToString("languageOfNode('y')", "ar"); | 26 shouldBeEqualToString("languageOfNode('y')", "ar"); |
| 28 </script> | 27 </script> |
| 29 </body> | 28 </body> |
| 30 </html> | 29 </html> |
| OLD | NEW |