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

Unified Diff: LayoutTests/fast/events/beforeload-iframe-crash.html

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 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: LayoutTests/fast/events/beforeload-iframe-crash.html
diff --git a/LayoutTests/fast/events/beforeload-iframe-crash.html b/LayoutTests/fast/events/beforeload-iframe-crash.html
deleted file mode 100644
index 6b28e81d4b8acafdba0a3b77b3ebb57a44a48088..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/beforeload-iframe-crash.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<iframe></iframe><object onbeforeload="crash()">
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-function crash() {
- document.getElementsByTagName("iframe")[0].contentWindow.scrollX;
- document.open();
-}
-
-document.body.offsetLeft;
-setTimeout(function() {
- document.close();
- document.body.innerHTML = 'PASS if not crashed.';
- testRunner.notifyDone();
-}, 1);
-</script>

Powered by Google App Engine
This is Rietveld 408576698