Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html |
| index 7f08156e619b730b5f586e445ea7ce60ac32ffdd..a375fa6c085d3e798867c3889214d20f3aaf0fef 100644 |
| --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html |
| +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html |
| @@ -1,9 +1,19 @@ |
| -<!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-ex-units-crash.js"></script> |
| +<script> |
| +test(function(t) { |
| + |
| +ctx = document.createElement('canvas').getContext('2d'); |
|
Justin Novosad
2017/02/03 18:39:32
indent
zakerinasab
2017/02/09 18:11:03
Done.
|
| + |
| +ctx.font = "5ex sans-serif"; |
| + |
| +size = parseInt(ctx.font.substr(0, 2)); |
| +family = ctx.font.substr(5); |
| + |
| +assert_approx_equals(size, 25, 10); |
| +assert_equals(family, 'sans-serif'); |
| + |
| +}, "Test that setting a font with size in 'ex' units doesn't crash."); |
| +</script> |
| </body> |
| -</html> |