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

Side by Side Diff: LayoutTests/svg/repaint/modify-transferred-listitem.html

Issue 321403004: SVG: Items inserted into list should be made a tear-off. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add baseline for mac Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <svg width="100" height="100">
3 <polygon id="ref" points="20,10 10,30 30,30 40,10" fill="red"></polygon>
4 <polygon id="target" points="20,10 10,30 30,30" fill="green"></polygon>
5 <polygon id="source" points="20,20" fill="blue"></polygon>
6 </svg>
7 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
8 <script>
9 testIsAsync = true;
10 window.onload = runRepaintTest;
11
12 function repaintTest() {
13 var moved = document.querySelector('#source').points.removeItem(0);
14 document.querySelector('#target').points.appendItem(moved);
15
16 requestAnimationFrame(function() {
17 moved.x = 40;
18 moved.y = 10;
19 if (window.testRunner)
20 finishRepaintTest();
21 });
22 }
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698