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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-in-table-cell.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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: third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-in-table-cell.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-in-table-cell.html b/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-in-table-cell.html
deleted file mode 100644
index 2a1b10a2122e2f1d4406286b494d40480f890948..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-in-table-cell.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<head>
- <style>
- ::selection { background-color: red; }
- </style>
- <script type="text/javascript" charset="utf-8">
- function runTest()
- {
- sel.empty();
- }
- </script>
-</head>
-<body onload="runTest()">
-<table><tr><td style="width: 100px; height: 100px;"></td></tr><tr><td style="background-color: green;">&nbsp;<div id="target" style="display: inline-block; height: 100px; width: 10px;"></div></td></tr></table>
-<script>
- var sel = getSelection();
- var target = document.getElementById("target");
-
- sel.setBaseAndExtent(target.previousSibling, 1, target.parentElement.parentElement, 1);
- document.body.offsetTop;
-</script>

Powered by Google App Engine
This is Rietveld 408576698