Index: third_party/WebKit/LayoutTests/fast/repaint/justify-self-overflow-change.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/justify-self-overflow-change.html b/third_party/WebKit/LayoutTests/fast/repaint/justify-self-overflow-change.html |
deleted file mode 100644 |
index e39741b4f8cba9d285b6c28af0a64245d33ea46f..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/justify-self-overflow-change.html |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-<!DOCTYPE HTML> |
-<script src="resources/text-based-repaint.js"></script> |
-<script> |
-function repaintTest() { |
- document.getElementsByClassName('item1')[0].style.justifySelf = 'end safe'; |
- document.getElementsByClassName('item2')[0].style.justifySelf = 'end safe'; |
-} |
-onload = runRepaintAndPixelTest; |
-</script> |
-<style> |
-body { |
- margin: 0; |
-} |
-#container { |
- display: grid; |
- grid: 300px / 100px 100px; |
- width: 200px; |
- height: 300px; |
- background-color: red; |
-} |
-.item1 { |
- grid-row: 1; |
- grid-column: 1; |
- justify-self: end unsafe; |
- background-color: green; |
- width: 150px; |
-} |
-.item2 { |
- grid-row: 1; |
- grid-column: 2; |
- background-color: green; |
- justify-self: end unsafe; |
- width: 50px; |
-</style> |
-<p style="height: 20px">Tests invalidation on justify-self style change. Passes if there is no red.</p> |
-<div id="container"> |
- <div class="item1"> |
- <div style="height: 150px"></div> |
- </div> |
- <div class="item2"> |
- <div style="height: 100px"></div> |
- </div> |
-</div> |