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

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: Add new tests. 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 <script src="resources/polyfill.js"></script> 4 <script src="resources/polyfill.js"></script>
5 <style> 5 <style>
6 .box { 6 .box {
7 height: 100px; 7 height: 100px;
8 width: 100px; 8 width: 100px;
9 margin: 10px; 9 margin: 10px;
10 background-color: gray; 10 background-color: gray;
(...skipping 24 matching lines...) Expand all
35 box.className = 'box fade'; 35 box.className = 'box fade';
36 }, 0); 36 }, 0);
37 } 37 }
38 38
39 runTransitionTest(expectedValues, setupTest, usePauseAPI); 39 runTransitionTest(expectedValues, setupTest, usePauseAPI);
40 </script> 40 </script>
41 </head> 41 </head>
42 <body> 42 <body>
43 <!-- Test for [bug 93755] ShadowRoot insertion point change aborts css trans ition, https://bugs.webkit.org/show_bug.cgi?id=93755 --> 43 <!-- Test for [bug 93755] ShadowRoot insertion point change aborts css trans ition, https://bugs.webkit.org/show_bug.cgi?id=93755 -->
44 <!-- If this test pass, css transition will be started and --> 44 <!-- If this test pass, css transition will be started and -->
45 <!-- the css transition will be paused by using pauseTransitionAtTimeOnEleme nt. --> 45 <!-- the css transition will be paused by using pauseAnimations. -->
46 <div id="box" class="box" style="background: green;"> 46 <div id="box" class="box" style="background: green;">
47 <div>Content</div> 47 <div>Content</div>
48 <div>New Content</div> 48 <div>New Content</div>
49 </div> 49 </div>
50 50
51 <div id="result"></div> 51 <div id="result"></div>
52 </body> 52 </body>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698