| Index: third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-font-ex-units-crash.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-font-ex-units-crash.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-font-ex-units-crash.js
|
| deleted file mode 100644
|
| index 2f275ad93b13d011691196ff21996522f4481824..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-font-ex-units-crash.js
|
| +++ /dev/null
|
| @@ -1,11 +0,0 @@
|
| -description("Test that setting a font with size in 'ex' units doesn't crash.");
|
| -
|
| -ctx = document.createElement('canvas').getContext('2d');
|
| -
|
| -ctx.font = "5ex sans-serif";
|
| -
|
| -size = parseInt(ctx.font.substr(0, 2));
|
| -family = ctx.font.substr(5);
|
| -
|
| -shouldBeCloseTo("size", 25, 10);
|
| -shouldBe("family", "'sans-serif'");
|
|
|