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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/base-render-style-font-selector-version-assert.html

Issue 2966953002: Move animations crash tests to subdirectory (Closed)
Patch Set: Rename crash-tests/ to stability/ Created 3 years, 5 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style id="emptyStyle"></style> 2 <style id="emptyStyle"></style>
3 <style> 3 <style>
4 @font-face { 4 @font-face {
5 font-family: dummy; 5 font-family: dummy;
6 src: local(dummy); 6 src: local(dummy);
7 } 7 }
8 8
9 #animated { 9 #animated {
10 font-family: serif; 10 font-family: serif;
(...skipping 17 matching lines...) Expand all
28 requestAnimationFrame(function(){ 28 requestAnimationFrame(function(){
29 requestAnimationFrame(function(){ 29 requestAnimationFrame(function(){
30 emptyStyle.parentNode.removeChild(emptyStyle); 30 emptyStyle.parentNode.removeChild(emptyStyle);
31 if (window.testRunner) 31 if (window.testRunner)
32 testRunner.notifyDone(); 32 testRunner.notifyDone();
33 }); 33 });
34 }); 34 });
35 }); 35 });
36 }; 36 };
37 </script> 37 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698