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

Side by Side Diff: third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-pseudo-element-animation.html

Issue 2150413002: Use node() when generating element id's (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-pseudo-element-animation-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 div {
4 width: 100px;
5 height: 100px;
6 background: orange;
7 }
8 div::before {
9 content: ":)";
10 transition-property: transform;
11 transition-duration: 1ms;
12
13 /* Make the pseudo element "transformable" as per
14 * https://www.w3.org/TR/css-transforms-1/#transformable-element.
15 */
16 display: block;
17 }
18 </style>
19 <div></div>
20 <script>
21 if (window.testRunner)
22 window.testRunner.waitUntilDone();
23
24 requestAnimationFrame(function(ts) {
25 document.styleSheets[0].addRule('div::before', 'transform: translateX(20px)') ;
26 requestAnimationFrame(function(ts) {
27 requestAnimationFrame(function(ts) {
28 if (window.testRunner)
29 window.testRunner.notifyDone();
30 });
31 });
32 });
33 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-pseudo-element-animation-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698