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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/insert-frame.html

Issue 2332973002: Fix crash of paint invalidation tracking after a new frame is created (Closed)
Patch Set: platform-neutual Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/insert-frame-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/paint/invalidation/insert-frame.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/insert-frame.html b/third_party/WebKit/LayoutTests/paint/invalidation/insert-frame.html
new file mode 100644
index 0000000000000000000000000000000000000000..2567da66366601a58739cc486693a77b0fde77e6
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/insert-frame.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<script src="resources/text-based-repaint.js"></script>
+<script>
+function repaintTest() {
+ var frame = document.createElement('iframe');
+ frame.style.width = '100px';
+ frame.style.height = '100px';
+ document.body.appendChild(frame);
+}
+onload = runRepaintTest;
+</script>
+<body style="margin: 0; height: 200px"></body>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/insert-frame-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698