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

Side by Side Diff: LayoutTests/svg/custom/use-referencing-animation-crash.html

Issue 1134453003: Merge 194421 "Avoid transiently creating disallowed elements whe..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2357/
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-referencing-animation-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <svg> 2 <svg>
3 <set id='cssPropAnim' xlink:href='#cssPropAnim' attributeName='fill' to='gold' ></set> 3 <set id='cssPropAnim' xlink:href='#cssPropAnim' attributeName='fill' to='gold' ></set>
4 <rect id='someRect'><animate></animate></rect> 4 <rect id='someRect'><animate></animate></rect>
5 <use clip-path='url(#someRect)' xlink:href='#cssPropAnim'></use> 5 <use clip-path='url(#someRect)' xlink:href='#cssPropAnim'></use>
6 </svg> 6 </svg>
7 <p>PASS if no crash in debug.</p> 7 <p>PASS if no crash in debug.</p>
8 <script> 8 <script>
9 if (window.testRunner) { 9 if (window.testRunner) {
10 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
(...skipping 15 matching lines...) Expand all
26 onload = function () { 26 onload = function () {
27 requestAnimationFrame(function() { 27 requestAnimationFrame(function() {
28 setTimeout(function() { 28 setTimeout(function() {
29 root.style.zoom = 2; 29 root.style.zoom = 2;
30 root.appendChild(document.getElementById('someRect').cloneNode(true)); 30 root.appendChild(document.getElementById('someRect').cloneNode(true));
31 root.appendChild(completionTrigger()); 31 root.appendChild(completionTrigger());
32 }, 0); 32 }, 0);
33 }); 33 });
34 } 34 }
35 </script> 35 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-referencing-animation-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698