Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: LayoutTests/platform/chromium/fast/text/font-linux-normalize.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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">&#x915;&#x093c;&#x0909;&#x9;a&#x308;</div>
-<ul id="console"></ul>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698