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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-font-consistency.html

Issue 2676493005: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Addressing comments Created 3 years, 10 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: third_party/WebKit/LayoutTests/fast/canvas/canvas-font-consistency.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-consistency.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-consistency.html
index aa84149bf8986d860529bfe42dcf684abb2a4746..4053c93adedfca7979b54b648fb57489fb05e90a 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-consistency.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-consistency.html
@@ -1,9 +1,22 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
<body>
-<script src="script-tests/canvas-font-consistency.js"></script>
+<script>
+test(function(t) {
+
+ var canvas = document.createElement('canvas');
+ var ctx = canvas.getContext('2d');
+ var fontNames = ["bold 13px Arial",
+ "italic 13px Arial",
+ "small-caps 13px Arial"];
+
+ for (var i = 0; i < fontNames.length; i++) {
+ var fontName = fontNames[i];
+ ctx.font = fontName;
+ assert_equals(ctx.font, fontName);
+ }
+
+}, 'Series of tests to ensure that context.font is consistent.');
+</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698