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

Unified Diff: LayoutTests/fast/events/beforeload-input-time-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-input-time-crash.html
diff --git a/LayoutTests/fast/events/beforeload-input-time-crash.html b/LayoutTests/fast/events/beforeload-input-time-crash.html
deleted file mode 100644
index 0e6316727fa79b798f330387b5224ce0d82e8196..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/beforeload-input-time-crash.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<input id="t1" type="time">
-<script>
-var time1 = document.getElementById('t1');
-document.addEventListener('beforeload', function(event) {
- time1.value = time1.value ? '' : '23:59';
-}, true);
-
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-setTimeout(function() {
- document.body.innerHTML = 'PASS if not crashed.';
- testRunner.notifyDone();
-}, 100);
-time1.focus();
-</script>
-<embed src="data:text/html,PASS"></embed>

Powered by Google App Engine
This is Rietveld 408576698