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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html
diff --git a/third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html b/third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html
new file mode 100644
index 0000000000000000000000000000000000000000..8a9042b9bb4b2c0f8ed7ebd782c032a0193882cf
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<style>
+ #target {
+ position: relative;
+ height: 50px;
+ width: 50px;
+ background-color: blue;
+ animation: slide-right 1s linear forwards;
+ }
+ @keyframes slide-right {
+ from { left: 0px; }
+ to { left: 10000px; }
+ }
+</style>
+<div id="target"></div>

Powered by Google App Engine
This is Rietveld 408576698