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

Side by Side Diff: LayoutTests/svg/repaint/repaint-non-scaling-stroke-text.html

Issue 1072403010: SVG Text should respect non-scaling-stroke. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
4 <script>
5 window.testIsAsync = true;
6 window.onload = runRepaintTest;
7
8 function repaintTest() {
9 setTimeout(function() {
10 document.getElementById('t').setAttribute("stroke", "blue");
11 document.getElementById('t').setAttribute("vector-effect", "non-scaling-strok e");
12 document.getElementById('t').setAttribute("stroke-width", "8");
13 requestAnimationFrame(function() {
14 if (window.testRunner)
15 finishRepaintTest();
16 });
17 }, 0);
18 };
19 </script>
20 <body>
21 <svg>
22 <g transform="scale(0.5 0.5)">
23 <text id="t" x="10" y="50" stroke="none" stroke-width="2" fill="none" fon t-size="36" vector-effect="none">Hello</text>
24 </g>
25 </svg>
26 </body>
27 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/svg/repaint/repaint-non-scaling-stroke-text-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698