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

Side by Side Diff: LayoutTests/svg/repaint/image-with-clip-path.svg

Issue 644093003: NOP refactor to make various layout tests use setTimeout 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « LayoutTests/svg/custom/use-detach.svg ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" onload="runRepaintAndPixelTest()"> 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" onload="runRepaintAndPixelTest()">
2 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js" type ="text/javascript"></script> 2 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js" type ="text/javascript"></script>
3 <text y="-10">Bug 76559: All red should disappear</text> 3 <text y="-10">Bug 76559: All red should disappear</text>
4 <g id="g" transform="translate(0, 0)"> 4 <g id="g" transform="translate(0, 0)">
5 <defs> 5 <defs>
6 <clipPath id="p"> 6 <clipPath id="p">
7 <rect id="r" x="-10" y="-10" width="20" height="20" /> 7 <rect id="r" x="-10" y="-10" width="20" height="20" />
8 </clipPath> 8 </clipPath>
9 </defs> 9 </defs>
10 <image x="-30" y="-30" width="60" height="60" clip-path="url(#p)" xlink: href=""/> 10 <image x="-30" y="-30" width="60" height="60" clip-path="url(#p)" xlink: href=""/>
(...skipping 13 matching lines...) Expand all
24 r.setAttribute('height', size); 24 r.setAttribute('height', size);
25 g.setAttribute("transform","translate(" + offset + ",50)"); 25 g.setAttribute("transform","translate(" + offset + ",50)");
26 i.setAttributeNS('http://www.w3.org/1999/xlink', 'href', img); 26 i.setAttributeNS('http://www.w3.org/1999/xlink', 'href', img);
27 }; 27 };
28 28
29 function finishTest() { 29 function finishTest() {
30 finishRepaintTest(); 30 finishRepaintTest();
31 } 31 }
32 32
33 function nextStep() { 33 function nextStep() {
34 i.onload = function() { setTimeout(finishTest, 0); }; 34 // FIXME: we need a better way of waiting for layout/repainting to happe n
35 i.onload = function() { setTimeout(finishTest, 1); };
35 update(200, 50, green); 36 update(200, 50, green);
36 } 37 }
37 38
38 function repaintTest() { 39 function repaintTest() {
39 i.onload = function() { setTimeout(nextStep, 0); }; 40 // FIXME: we need a better way of waiting for layout/repainting to happe n
41 i.onload = function() { setTimeout(nextStep, 1); };
40 update(50, 100, red); 42 update(50, 100, red);
41 } 43 }
42 </script> 44 </script>
43 </svg> 45 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/use-detach.svg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698