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

Unified Diff: LayoutTests/animations/interpolation/svg-kerning-interpolation.html

Issue 234453002: Remove SVG1.1 kerning property (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More TestExpectations updates Created 6 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/animations/interpolation/svg-kerning-interpolation.html
diff --git a/LayoutTests/animations/interpolation/svg-kerning-interpolation.html b/LayoutTests/animations/interpolation/svg-kerning-interpolation.html
deleted file mode 100644
index 4a60931c3fea0c84709b16e530188cb5dbbfc323..0000000000000000000000000000000000000000
--- a/LayoutTests/animations/interpolation/svg-kerning-interpolation.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<meta charset="UTF-8">
-<style>
-.target {
- stroke: black;
-}
-.replica {
- stroke: green;
-}
-</style>
-<body>
-<template id="target-template">
- <svg width="100" height="50">
- <text x="0" y="25" font-size="20">TTT</text>
- </svg>
-</template>
-<script src="resources/interpolation-test.js"></script>
-<script>
-assertInterpolation({
- property: 'kerning',
- from: '-10px',
- to: '10px'
-}, [
- {at: -0.25, is: '-15px'},
- {at: 0, is: '-10px'},
- {at: 0.25, is: '-5px'},
- {at: 0.5, is: '0px'},
- {at: 0.75, is: '5px'},
- {at: 1, is: '10px'},
- {at: 1.25, is: '15px'},
-]);
-</script>
-</body>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/animations/interpolation/svg-kerning-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698