| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <title>Test that baseline-shift is unaffected by zoom level</title> | 2 <title>Test that baseline-shift is unaffected by zoom level</title> |
| 3 <script src="../../resources/testharness.js"></script> | 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> | 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <svg width="250" height="140" viewBox="0 0 250 140" | 5 <svg width="250" height="140" viewBox="0 0 250 140" |
| 6 xmlns="http://www.w3.org/2000/svg" version="1.1"> | 6 xmlns="http://www.w3.org/2000/svg" version="1.1"> |
| 7 <style> | 7 <style> |
| 8 text { | 8 text { |
| 9 font-family: ahem; | 9 font-family: ahem; |
| 10 font-size: 20px; | 10 font-size: 20px; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 zoomLevels.forEach(function (zoom) { | 21 zoomLevels.forEach(function (zoom) { |
| 22 html.style.zoom = zoom; | 22 html.style.zoom = zoom; |
| 23 var baselineShiftDelta = (document.querySelector('text').getStartPos
itionOfChar(0).y - | 23 var baselineShiftDelta = (document.querySelector('text').getStartPos
itionOfChar(0).y - |
| 24 document.querySelector('tspan').getStartPositionOfChar(0).y); | 24 document.querySelector('tspan').getStartPositionOfChar(0).y); |
| 25 test(function () { | 25 test(function () { |
| 26 assert_equals(Math.abs(baselineShiftDelta), 10, "Baseline half a
font-size up or down"); | 26 assert_equals(Math.abs(baselineShiftDelta), 10, "Baseline half a
font-size up or down"); |
| 27 }, "Text bounds height at zoom " + zoom + " with baseline-shift=" +
baselineShiftValue); | 27 }, "Text bounds height at zoom " + zoom + " with baseline-shift=" +
baselineShiftValue); |
| 28 }); | 28 }); |
| 29 }); | 29 }); |
| 30 html.style.zoom = 1; | 30 html.style.zoom = 1; |
| 31 // Clean up to avoid being classified as a text test; avoids an -expected.tx
t file. |
| 32 document.querySelector('text').remove(); |
| 31 </script> | 33 </script> |
| 32 </svg> | 34 </svg> |
| 33 <p>This test requires the Ahem font</p> | |
| OLD | NEW |