Index: third_party/WebKit/LayoutTests/fast/forms/file/file-crash-by-runin-parent.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/file/file-crash-by-runin-parent.html b/third_party/WebKit/LayoutTests/fast/forms/file/file-crash-by-runin-parent.html |
deleted file mode 100644 |
index f2283eb8b8f203d08fea54ceb3ea983e07b40006..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/file/file-crash-by-runin-parent.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<style> |
-.c0 { |
- display: list-item; |
-} |
-.c7 { |
- -webkit-wrap-flow: auto; |
- display: run-in; |
-} |
-</style> |
-<script> |
-// This test requires ASAN to detect a regression. |
-onload = function() { |
- document.body.innerHTML += '<nav class="c0"></nav>'; |
- document.designMode = 'on'; |
- window.getSelection().setBaseAndExtent(document.createElement('q'), 1, document.querySelector('nav'), 6); |
- document.designMode = 'off'; |
- document.querySelector('nav').classList.add('c7'); |
- |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- document.body.innerHTML += 'PASS if not crash.'; |
-} |
-</script> |
-<body><rp class="c7"><input type="file"></rp></body> |