Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3 .org/1999/xlink" width="400" height="400" style="border: 1px solid black;"> | |
| 3 <g> | |
| 4 <text x="130" y="30" font-family="Arial" font-size="10" fill="black">Happy, Web</text> | |
| 5 <text x="130" y="50" font-family="Arial" font-size="10" fill="black">Happy, SVG</text> | |
| 6 <text x="130" y="70" font-family="Arial" font-size="10" fill="black">Happy, ;)link</text> | |
| 7 </g> | |
| 8 <text id="line" x="130" y="150" font-family="Arial" font-size="10" fill="black ">Hello World. Hello, SVG.</text> | |
| 9 </svg> | |
| 10 <script src="../../resources/js-test.js"></script> | |
| 11 <script src="resources/SelectionTestCase.js"></script> | |
| 12 <script type="text/javascript"> | |
| 13 function runTest() { | |
|
fs
2016/01/26 14:24:01
This function could be removed - just inline it in
| |
| 14 selectTextFromCharToPoint({ id: 'line', offset: 0 }, { x: 300, y: 300 }, { sta rt: "0", end: "24" }); | |
| 15 selectTextFromCharToPoint({ id: 'line', offset: 6 }, { x: 300, y: 300 }, { sta rt: "6", end: "24" }); | |
| 16 selectTextFromCharToPoint({ id: 'line', offset: 12 }, { x: 300, y: 300 }, { st art: "12", end: "24" }); | |
|
fs
2016/01/26 14:24:01
You should have a test where the point being moved
| |
| 17 } | |
| 18 | |
| 19 runTest(); | |
| 20 </script> | |
| OLD | NEW |