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

Side by Side Diff: LayoutTests/fast/dom/shadow/transition-on-shadow-host-with-distributed-node.html

Issue 14556022: Simplify animation testing API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .box { 5 .box {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 margin: 10px; 8 margin: 10px;
9 background-color: gray; 9 background-color: gray;
10 } 10 }
(...skipping 23 matching lines...) Expand all
34 box.className = 'box fade'; 34 box.className = 'box fade';
35 }, 0); 35 }, 0);
36 } 36 }
37 37
38 runTransitionTest(expectedValues, setupTest, usePauseAPI); 38 runTransitionTest(expectedValues, setupTest, usePauseAPI);
39 </script> 39 </script>
40 </head> 40 </head>
41 <body> 41 <body>
42 <!-- Test for [bug 93755] ShadowRoot insertion point change aborts css trans ition, https://bugs.webkit.org/show_bug.cgi?id=93755 --> 42 <!-- Test for [bug 93755] ShadowRoot insertion point change aborts css trans ition, https://bugs.webkit.org/show_bug.cgi?id=93755 -->
43 <!-- If this test pass, css transition will be started and --> 43 <!-- If this test pass, css transition will be started and -->
44 <!-- the css transition will be paused by using pauseTransitionAtTimeOnEleme nt. --> 44 <!-- the css transition will be paused by using pauseAnimations. -->
45 <div id="box" class="box" style="background: green;"> 45 <div id="box" class="box" style="background: green;">
46 <div>Content</div> 46 <div>Content</div>
47 <div>New Content</div> 47 <div>New Content</div>
48 </div> 48 </div>
49 49
50 <div id="result"></div> 50 <div id="result"></div>
51 </body> 51 </body>
52 </html> 52 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css-generated-content/pseudo-transition.html ('k') | LayoutTests/transitions/opacity-transition-zindex.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698