4 <script src=
"../../../resources/js-test.js"></script>
8 if (window
.testRunner
) {
9 testRunner
.waitUntilDone();
10 testRunner
.setCanOpenWindows();
13 description("Tests that Unicode characters that changes the string length when lower cased still works.");
15 // U+0130 = LATIN CAPITAL LETTER I WITH DOT ABOVE
16 // U+0069 LATIN SMALL LETTER I
17 // U+0307 COMBINING DOT ABOVE
18 // \u0130 gets lowered to \u0069\u0307.
20 var w
= window
.open("resources/window-property-invalid-characters-ignored.html", "blank", "\u0130\u0130=\u0130\u0130,width=123,height=123");
24 shouldBe("w.innerWidth", "123");
25 shouldBe("w.innerHeight", "123");
26 shouldBeTrue("w !== window");
35 <pre id=
"console"></pre>