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

Unified Diff: LayoutTests/fast/text/backslash-to-yen-sign.html

Issue 27030014: Remove Backslash-as-JPY hack (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: TextCodec/Encoding added Created 7 years, 2 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/fast/text/backslash-to-yen-sign.html
diff --git a/LayoutTests/fast/text/backslash-to-yen-sign.html b/LayoutTests/fast/text/backslash-to-yen-sign.html
deleted file mode 100644
index dbcee0dabfe906bc2b682cdafc85933560ba36f3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/text/backslash-to-yen-sign.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-
-<head>
-<meta charset="UTF-8">
-<script>
-
-function test()
-{
- var FONT_AND_EXPECTATIONS = [
- [ null, "backslash" ],
- [ "MS PGothic", "yen sign" ],
- [ "MS Gothic", "yen sign" ],
- [ "MS PMincho", "yen sign" ],
- [ "MS Mincho", "yen sign" ],
- [ "Meiryo", "yen sign" ],
- [ "MS Pゴシック", "yen sign" ],
- [ "MS ゴシック", "yen sign" ],
- [ "MS P明朝", "yen sign" ],
- [ "MS 明朝", "yen sign" ],
- [ "メイリオ", "yen sign" ],
- [ "Times", "backslash" ],
- [ "foobar", "backslash" ]
- ];
-
- for (var i = 0; FONT_AND_EXPECTATIONS[i]; i++) {
- var fontName = FONT_AND_EXPECTATIONS[i][0];
- var expectation = FONT_AND_EXPECTATIONS[i][1];
- var element = document.createElement("div");
- if (fontName)
- element.style.fontFamily = fontName;
-
- if (fontName)
- text = 'Using font "' + fontName + '". ';
- else
- text = 'No font is specified. ';
- text += 'expected: ' + expectation + ', actual: ' + '\\';
- element.innerHTML = text;
- document.body.appendChild(element);
- }
-}
-
-</script>
-</head>
-
-<body onload="test();">
-</body>
-
-</html>
« no previous file with comments | « LayoutTests/fast/dom/HTMLOptionElement/option-text.html ('k') | LayoutTests/fast/text/backslash-to-yen-sign-dynamic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698