Index: third_party/WebKit/LayoutTests/dialog/modal-dialog-scroll-height.html |
diff --git a/third_party/WebKit/LayoutTests/dialog/modal-dialog-scroll-height.html b/third_party/WebKit/LayoutTests/dialog/modal-dialog-scroll-height.html |
deleted file mode 100644 |
index c54281769b8d4aa13006e49834169570739775cf..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/dialog/modal-dialog-scroll-height.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-body { |
- margin: 0; |
-} |
-.spacer { |
- height: 500px; |
-} |
-dialog { |
- border: 0; |
- margin: 0; |
- padding: 1px; |
-} |
-</style> |
-<div class="spacer"></div> |
-<dialog> |
- <div class="spacer"></div> |
-</dialog> |
-<script src="../resources/js-test.js"></script> |
-<script> |
- |
-document.querySelector('dialog').showModal(); |
-shouldBe('600', String(document.scrollingElement.scrollHeight)); |
- |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-</script> |