Index: third_party/WebKit/LayoutTests/fast/table/percent-height-content-in-fixed-height-cell.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/percent-height-content-in-fixed-height-cell.html b/third_party/WebKit/LayoutTests/fast/table/percent-height-content-in-fixed-height-cell.html |
deleted file mode 100644 |
index 0333e6f72ec7df5ffd97478ec125e67728b2a7e8..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/table/percent-height-content-in-fixed-height-cell.html |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-table { |
- width: 250px; |
-} |
- |
-td { |
- width: 242px; |
-} |
- |
-.cell-specified-height { |
- height: 202px; |
-} |
- |
-.container { |
- height: 100%; |
- overflow-y: hidden; |
- border: 1px solid #ccc; |
-} |
-.content { |
- background-color: black; |
- height: 2000px; |
- width: 225px; |
-} |
-</style> |
-<table> |
- <td class="cell-specified-height"> |
- <div class="container" data-expected-height=204> |
- <div class="content"></div> |
- </div> |
- </td> |
-</table> |
-<script src="../../resources/check-layout.js"></script> |
-<p> crbug.com/465096: Percent height content in a cell with a computed height should use the height of the cell. </p> |
-<div id="output"></div> |
-<script> |
-checkLayout('.container', output); |
-</script> |