| Index: LayoutTests/platform/chromium/fast/text/font-linux-normalize.html
|
| diff --git a/LayoutTests/platform/chromium/fast/text/font-linux-normalize.html b/LayoutTests/platform/chromium/fast/text/font-linux-normalize.html
|
| deleted file mode 100644
|
| index 2dc1031cae2db556e74054b534c6a7dd5d6a694d..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/fast/text/font-linux-normalize.html
|
| +++ /dev/null
|
| @@ -1,48 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script>
|
| -function log(str) {
|
| - var li = document.createElement("li");
|
| - li.appendChild(document.createTextNode(str));
|
| - var console = document.getElementById("console");
|
| - console.appendChild(li);
|
| -}
|
| -
|
| -function convertStringToUnicode(string)
|
| -{
|
| - var returnValue = " (character in Unicode value): ";
|
| - for (var i = 0; i < string.length; ++i)
|
| - {
|
| - returnValue += " " + string.charCodeAt(i);
|
| - }
|
| - return returnValue;
|
| -}
|
| -
|
| -function assertEqual(test_name, actual, expected)
|
| -{
|
| - if (actual != expected) {
|
| - log("==================================");
|
| - log("FAILED: " + test_name);
|
| - var actual_string = "actual" + convertStringToUnicode(actual);
|
| - var expected_string = "expected" + convertStringToUnicode(expected);
|
| - log(actual_string);
|
| - log(expected_string);
|
| - }
|
| -}
|
| -
|
| -onload = function()
|
| -{
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| - var div = document.getElementById("div");
|
| - var string = div.innerHTML;
|
| - //should be rendered as "\u0958\u0909 \u00e4" in html.
|
| - assertEqual("devanagari + a with diaeresis", string, "\u0915\u093c\u0909\u0009a\u0308");
|
| -}
|
| -</script>
|
| -</head>
|
| -<body>
|
| -<div id="div">क़उ	ä</div>
|
| -<ul id="console"></ul>
|
| -</body>
|
| -</html>
|
|
|