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

Side by Side Diff: LayoutTests/web-animations-api/element-animate-position-crash.html

Issue 275753002: Web Animations: Timeline should not advance during task execution (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add back missing test changes. Created 6 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
OLDNEW
1 <iframe id="iframe"></iframe> 1 <iframe id="iframe"></iframe>
2 <div id="div1"></div> 2 <div id="div1"></div>
3 This test passes if it does not crash. 3 This test passes if it does not crash.
4 <div id="div2"></div> 4 <div id="div2"></div>
5 <div id="div3"></div> 5 <div id="div3"></div>
6 <embed id="embed"></embed> 6 <embed id="embed"></embed>
7 <script> 7 <script>
8 try{embed.appendChild(null);}catch(e){} 8 try{embed.appendChild(null);}catch(e){}
9 iframe.animate([{"position":"fixed"}, {"position":"static"}], {duration: 1, fill : 'forwards'}); 9 iframe.animate([{"position":"fixed"}, {"position":"static"}], {duration: 1, fill : 'forwards'});
10 div3.appendChild(div1); 10 div3.appendChild(div1);
11 if (window.testRunner) { 11 if (window.testRunner) {
12 testRunner.waitUntilDone(); 12 testRunner.waitUntilDone();
13 testRunner.dumpAsText(); 13 testRunner.dumpAsText();
14 requestAnimationFrame(function() { 14 requestAnimationFrame(function() {
15 document.documentElement.textContent = 'PASS';
15 testRunner.notifyDone(); 16 testRunner.notifyDone();
16 }); 17 });
17 } 18 }
18 </script> 19 </script>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/web-animations-api/element-animate-position-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698