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

Unified Diff: Source/web/tests/data/orientation-frame-detach.html

Issue 1172603004: Fix crash when an onorientationchange event detaches an iframe. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« Source/core/frame/LocalDOMWindow.cpp ('K') | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/data/orientation-frame-detach.html
diff --git a/Source/web/tests/data/orientation-frame-detach.html b/Source/web/tests/data/orientation-frame-detach.html
new file mode 100644
index 0000000000000000000000000000000000000000..868fb4529b4cf30d239bcc755c1e3e8eb7cb4dd1
--- /dev/null
+++ b/Source/web/tests/data/orientation-frame-detach.html
@@ -0,0 +1,8 @@
+<body>
+<iframe id="i" src="about:blank"></iframe>
+<script>
+window.onorientationchange = function() {
+ document.getElementById("i").remove();
+}
+</script>
+</frame>
« Source/core/frame/LocalDOMWindow.cpp ('K') | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698