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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html

Issue 2743053003: [Reland #1] Don't create layout objects for children of display-none iframes. (Closed)
Patch Set: rebaseline. Created 3 years, 8 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #target {
4 position: relative;
5 height: 50px;
6 width: 50px;
7 background-color: blue;
8 animation: slide-right 1s linear forwards;
9 }
10 @keyframes slide-right {
11 from { left: 0px; }
12 to { left: 10000px; }
13 }
14 </style>
15 <div id="target"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698