Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / content-language-multiple.html
blob148c5f8b68bc5201f2939629c1315597107676c5
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
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>
8 </head>
9 <body>
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.
16 </p>
17 <div id="console"></div>
18 <div id="x"></div>
19 <div id="y" lang="ar"></div>
20 <script>
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"');
27 </script>
28 </body>
29 </html>